feat: sqlc, nix formatting

This commit is contained in:
2025-04-16 00:58:44 -04:00
parent 32f85fd0be
commit 967e2650ad
74 changed files with 1962 additions and 6811 deletions

View File

@ -0,0 +1,37 @@
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.28.0
package sqlc
import (
"time"
)
type File struct {
ID int64
Name string
Data []byte
UserID int64
}
type Item struct {
ID int64
Name string
Added time.Time
Description string
Price float64
Quantity int64
UserID int64
}
type SchemaMigration struct {
Version string
}
type User struct {
ID int64
Username string
Password string
ProfilePictureID *int64
}