mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-04 03:09:33 -06:00
11 lines
170 B
Go
11 lines
170 B
Go
package command
|
|
|
|
import (
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func init() {
|
|
viper.SetDefault("server.addr", "0.0.0.0:8080")
|
|
viper.SetDefault("metrics.addr", "0.0.0.0:8090")
|
|
}
|