gitstack

demo/acme-pay code browser

139 B Go 8 lines 2024-01-16 · ff9d4e8 raw
1
2
3
4
5
6
7
8
package auth

// User represents an authenticated application user.
type User struct {
	ID       int64
	Username string
	PassHash string
}