mirror of
https://github.com/1f349/mjwt.git
synced 2024-11-09 22:22:48 +00:00
9 lines
190 B
Go
9 lines
190 B
Go
package claims
|
|
|
|
// EmptyClaims contains no claims
|
|
type EmptyClaims struct {}
|
|
|
|
func (e EmptyClaims) Valid() error { return nil }
|
|
|
|
func (e EmptyClaims) Type() string { return "empty-claims" }
|