woj-server/internal/model/jwt.go

13 lines
191 B
Go
Raw Normal View History

2023-07-15 16:19:49 +08:00
package model
import (
"github.com/golang-jwt/jwt/v4"
)
type Claim struct {
UID uint `json:"id"`
Role Role `json:"role"`
Version int64 `json:"version"`
jwt.RegisteredClaims
}