summaryrefslogtreecommitdiff
path: root/internal/user/user.go
blob: 04f3dae81206120a2e6328f285d9e4b4355f4568 (plain)
1
2
3
4
5
6
7
8
9
package user

type User struct {
	id           int
	email        string
	username     string
	phone        string
	passwordHash string
}