This commit is contained in:
2026-02-26 18:52:42 +01:00
parent 89f4f855c8
commit 11e8160cf9
11 changed files with 505 additions and 112 deletions

View File

@@ -13,3 +13,9 @@ type FileRecord struct {
Deleted bool `json:"deleted"`
CreatedAt time.Time `json:"created_at"`
}
type User struct {
ID uint `gorm:"primaryKey"`
Username string `gorm:"unique"`
Password string
}