mirror of
https://github.com/Unkn0wnCat/calapi.git
synced 2025-04-28 09:36:20 +02:00
9 lines
167 B
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
|
|
}
|