influxdb/services/admin/config.go

18 lines
313 B
Go
Raw Normal View History

2015-05-29 19:50:05 +00:00
package admin
2015-05-30 20:00:46 +00:00
const (
// DefaultBindAddress is the default bind address for the HTTP server.
DefaultBindAddress = ":8083"
)
type Config struct {
Enabled bool `toml:"enabled"`
BindAddress string `toml:"bind-address"`
}
func NewConfig() Config {
return Config{
BindAddress: DefaultBindAddress,
}
}