Complete User CRUD

This commit is contained in:
Deluan 2020-01-19 21:39:37 -05:00
parent 1c04a19910
commit 2ab0cecd48
11 changed files with 201 additions and 45 deletions

View file

@ -7,8 +7,8 @@ type User struct {
Name string
Password string
IsAdmin bool
LastLoginAt time.Time
LastAccessAt time.Time
LastLoginAt *time.Time
LastAccessAt *time.Time
CreatedAt time.Time
UpdatedAt time.Time
}