mirror of
https://github.com/darmiel/yaxc.git
synced 2025-09-03 21:14:25 +08:00
9 lines
166 B
Go
9 lines
166 B
Go
package whitelist
|
|
|
|
import "github.com/golang-jwt/jwt"
|
|
|
|
type Claim struct {
|
|
MaxBody int64 `json:"max_body"`
|
|
RandomID int `json:"random_id"`
|
|
jwt.StandardClaims
|
|
}
|