nyanimedb/auth/claims.go
2025-12-06 06:47:01 +03:00

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
}