10 lines
219 B
Go
Raw Normal View History

2020-11-04 21:12:13 +02:00
package model
// User represents our User model.
type User struct {
ID string `json:"id"`
Username string `json:"username"`
HashedPassword []byte `json:"-"`
Roles []Role `json:"roles"`
}