jwt/validation_options.go

10 lines
168 B
Go
Raw Permalink Normal View History

2022-05-28 22:13:49 +03:00
package jwt
import "time"
// validator is magic
type validator struct {
// Leeway to provide to the current time when validating time values
leeway time.Duration
}