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"` }