mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-15 14:10:34 -04:00
9 lines
131 B
Go
9 lines
131 B
Go
package jwt
|
|
|
|
import "github.com/golang-jwt/jwt/v4"
|
|
|
|
type ThumbnailClaims struct {
|
|
jwt.RegisteredClaims
|
|
Key string `json:"key"`
|
|
}
|