Files
go-sqlc-htmx/db/models.go
2025-06-12 13:12:20 +03:00

26 lines
335 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package db
import (
"time"
"github.com/google/uuid"
)
type Session struct {
ID uuid.UUID
UserID int32
ExpiresAt time.Time
CreatedAt time.Time
}
type User struct {
ID uuid.UUID
Username string
Password string
CreatedAt time.Time
}