15 lines
367 B
Go
15 lines
367 B
Go
|
package jwt
|
||
|
|
||
|
import (
|
||
|
"github.com/lestrrat-go/iter/mapiter"
|
||
|
"github.com/lestrrat-go/jwx/internal/iter"
|
||
|
"github.com/lestrrat-go/jwx/internal/json"
|
||
|
)
|
||
|
|
||
|
type ClaimPair = mapiter.Pair
|
||
|
type Iterator = mapiter.Iterator
|
||
|
type Visitor = iter.MapVisitor
|
||
|
type VisitorFunc = iter.MapVisitorFunc
|
||
|
type DecodeCtx = json.DecodeCtx
|
||
|
type TokenWithDecodeCtx = json.DecodeCtxContainer
|