2026-04-21 09:59:37 +02:00

20 lines
256 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.30.0
package usersdb
import (
"time"
"github.com/google/uuid"
)
type User struct {
ID uuid.UUID
Email string
Password string
CreatedAt time.Time
UpdatedAt time.Time
}