summary refs log tree commit diff stats
path: root/account/user.go
blob: 769e8fc627e4c664a6c24b34143812fd811fd2f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package account

// User holds information about the user.
type User struct {
	ID       string
	Username string
	Password string
	Hash     string
	Token    string
}