Files
go-sqlc-htmx/db/models.go
Dmitry Chumak b47e0d3445 init code
2025-05-27 19:22:55 +05:00

26 lines
331 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 int32
Username string
Password string
CreatedAt time.Time
}