Dmitri fb0f858f4b
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m40s
added sqlc generated code
2026-04-19 18:15:35 +02:00

18 lines
275 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package usersdb
import (
"github.com/jackc/pgx/v5/pgtype"
)
type User struct {
ID pgtype.UUID
Email string
Password string
CreatedAt pgtype.Timestamptz
UpdatedAt pgtype.Timestamptz
}