gorss/internal/database/models.go
2025-06-24 21:33:09 +02:00

19 lines
239 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.28.0
package database
import (
"time"
"github.com/google/uuid"
)
type User struct {
ID uuid.UUID
CreatedAt time.Time
UpdateAt time.Time
Name string
}