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