mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-22 21:10:44 -05:00
9 lines
234 B
Go
9 lines
234 B
Go
package config
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `yaml:"addr" env:"THUMBNAILS_HTTP_ADDR"`
|
|
Root string `yaml:"root" env:"THUMBNAILS_HTTP_ROOT"`
|
|
Namespace string `yaml:"-"`
|
|
}
|