1
0
Fork 0
mirror of https://github.com/Unkn0wnCat/calapi.git synced 2025-05-30 23:56:09 +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
}