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