13 lines
245 B
Go
13 lines
245 B
Go
package config
|
|
|
|
// NOTE: Most of this configuration is not needed to keep it as simple as possible
|
|
// TODO: Clean up unneeded configuration
|
|
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
Service: Service{
|
|
Name: "notifications",
|
|
},
|
|
}
|
|
}
|