mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-27 22:41:10 -05:00
1609bb3a7c
Signed-off-by: jkoberg <jkoberg@owncloud.com>
19 lines
307 B
Go
19 lines
307 B
Go
package config
|
|
|
|
func DefaultConfig() *Config {
|
|
return &Config{
|
|
Service: Service{
|
|
Name: "audit",
|
|
},
|
|
Events: Events{
|
|
Endpoint: "127.0.0.1:9233",
|
|
Cluster: "test-cluster",
|
|
ConsumerGroup: "audit",
|
|
},
|
|
Auditlog: Auditlog{
|
|
LogToConsole: true,
|
|
Format: "json",
|
|
},
|
|
}
|
|
}
|