mirror of
https://github.com/Unkn0wnCat/matrix-veles.git
synced 2025-04-28 09:46:51 +02:00
8 lines
137 B
Go
8 lines
137 B
Go
package model
|
|
|
|
import "github.com/golang-jwt/jwt/v4"
|
|
|
|
type JwtClaims struct {
|
|
Username string `json:"username"`
|
|
jwt.RegisteredClaims
|
|
}
|