influxdb/services/subscriber/config.go

11 lines
177 B
Go
Raw Normal View History

package subscriber
type Config struct {
// Whether to enable to Subscriber service
Enabled bool `toml:"enabled"`
}
func NewConfig() Config {
return Config{Enabled: true}
}