mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-06 04:09:40 -06:00
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",
|
|
},
|
|
}
|
|
}
|