This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/types/claims.go
Matthew Dillon efb0cc13fa Golint
2015-10-05 10:34:21 -07:00

12 lines
179 B
Go

package types
// Claims represent an authenticated user's session.
type Claims struct {
Name string
Iss string
Sub int64
Role string
Iat int64
Exp int64
Ref string
}