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