Files
AnonymousOverflow/src/types/imageProxy.go
T
2023-02-02 19:05:08 -05:00

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
}