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
import "time"
type UserModel struct {
Name string
Hash string
}
Id int
Name string
Hash string
CreatedAt time.Time
LastUpdated time.Time
}