// Code generated by sqlc. DO NOT EDIT. // versions: // sqlc v1.25.0 package sql import ( "github.com/google/uuid" "github.com/jackc/pgx/v5/pgtype" ) type Library struct { ID uuid.UUID Owner int32 DisplayName string Deleted pgtype.Timestamp } type Resource struct { ID uuid.UUID Parent *uuid.UUID Name string Dir bool Created pgtype.Timestamp Modified pgtype.Timestamp Deleted pgtype.Timestamp Size pgtype.Int4 Etag pgtype.Text } type User struct { ID int32 DisplayName string Username string PasswordHash string Deleted pgtype.Timestamp }