jwt/validation_options.go

10 lines
168 B
Go

package jwt
import "time"
// validator is magic
type validator struct {
// Leeway to provide to the current time when validating time values
leeway time.Duration
}