mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-27 07:23:10 -05: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
235 B
Go
9 lines
235 B
Go
package config
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `ocisConfig:"addr" env:"THUMBNAILS_HTTP_ADDR"`
|
|
Root string `ocisConfig:"root" env:"THUMBNAILS_HTTP_ROOT"`
|
|
Namespace string
|
|
}
|