Files
opencloud/notifications/pkg/config/defaultconfig.go
2022-02-18 15:44:53 +01:00

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",
},
}
}