Files
QSfera/services/thumbnails/pkg/service/jwt/jwt.go
T
Thomas MüllerandGitHub 9db3fd028e feat: add maximum image dimension to be processed by the thumbnailer (#9035)
* feat: add maximum image dimension to be processed by the thumbnailer

* chore: make golangci-lint happy
2024-05-03 12:20:27 +02:00

10 lines
187 B
Go

package jwt
import "github.com/golang-jwt/jwt/v4"
// ThumbnailClaims defines the claims for thumb-nailing
type ThumbnailClaims struct {
jwt.RegisteredClaims
Key string `json:"key"`
}