pweb-api-ets / models /custom_claim.go
lifedebugger's picture
Deploy files from GitHub repository
131eba4
raw
history blame contribute delete
162 Bytes
package models
import "github.com/golang-jwt/jwt/v5"
type CustomClaims struct {
jwt.RegisteredClaims
UserID uint `json:"id"`
Role string `json:"role"`
}