1
0
Fork 0
mirror of https://github.com/Unkn0wnCat/calapi.git synced 2025-06-14 22:21:35 +02:00
calapi/internal/auth/jwtClaims.go

9 lines
167 B
Go

package auth
import "github.com/golang-jwt/jwt/v5"
type JwtClaims struct {
Username string `json:"username"`
Name string `json:"name"`
jwt.RegisteredClaims
}