mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-18 23:47:05 -04:00
Improved the thumbnails API so that the binary files won't be transported via GRPC. GRPC has a limited message size and isn't very effiefficient with large binary data.
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"`
|
|
}
|