mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-05 11:51:16 -06:00
9 lines
224 B
Go
9 lines
224 B
Go
package config
|
|
|
|
// HTTP defines the available http configuration.
|
|
type HTTP struct {
|
|
Addr string `yaml:"addr" env:"GRAPH_HTTP_ADDR"`
|
|
Namespace string `yaml:"-"`
|
|
Root string `yaml:"root" env:"GRAPH_HTTP_ROOT"`
|
|
}
|