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