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

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