blob: e309a36da0ed80403ed34d8bb2089755aadc1c34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package database
import "time"
type User struct {
ID int `json:"id"`
Username string `json:"username"`
Password string `json:"password"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
|