features/sqlite-sorta-workin #4

Merged
jtom38 merged 5 commits from features/sqlite-sorta-workin into main 2024-03-22 12:26:55 -07:00
Showing only changes of commit 7cf3e7943c - Show all commits

View File

@ -1,6 +1,11 @@
package models package models
import "time"
type UserModel struct { type UserModel struct {
Id int
Name string Name string
Hash string Hash string
CreatedAt time.Time
LastUpdated time.Time
} }