mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-18 15:13:32 -05: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"`
|
|
}
|