9 lines
173 B
Go
9 lines
173 B
Go
package auth
|
|
|
|
import "github.com/golang-jwt/jwt/v5"
|
|
|
|
type TokenClaims struct {
|
|
Type string `json:"type"`
|
|
ImpID *string `json:"imp_id,omitempty"`
|
|
jwt.RegisteredClaims
|
|
}
|