mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 08:41:16 -05:00
10 lines
187 B
Go
10 lines
187 B
Go
package jwt
|
|
|
|
import "github.com/golang-jwt/jwt/v5"
|
|
|
|
// ThumbnailClaims defines the claims for thumb-nailing
|
|
type ThumbnailClaims struct {
|
|
jwt.RegisteredClaims
|
|
Key string `json:"key"`
|
|
}
|