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