mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-18 11:00:03 -05:00
10 lines
284 B
Go
10 lines
284 B
Go
package config
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `ocisConfig:"addr" env:"WEB_HTTP_ADDR"`
|
|
Namespace string
|
|
Root string `ocisConfig:"root" env:"WEB_HTTP_ROOT"`
|
|
CacheTTL int `ocisConfig:"cache_ttl" env:"WEB_CACHE_TTL"`
|
|
}
|