forked from mirror/jwt
10 lines
168 B
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
|
||
|
}
|