18 lines
235 B
Go
18 lines
235 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type Session struct {
|
|
ID string
|
|
User *User
|
|
}
|
|
|
|
type User struct {
|
|
ID uint64
|
|
Username string
|
|
Login string
|
|
PasswordHash []byte
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|