mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2024-12-06 19:16:43 +01:00
15 lines
227 B
Go
15 lines
227 B
Go
package types
|
|
|
|
import "github.com/golang-jwt/jwt/v4"
|
|
|
|
type ImageProxyClaims struct {
|
|
Action string `json:"action"`
|
|
|
|
ImageURL string `json:"image_url"`
|
|
|
|
Iss int64 `json:"iss"`
|
|
Exp int64 `json:"exp"`
|
|
|
|
jwt.RegisteredClaims
|
|
}
|