Files
akvorado/orchestrator/config.go
Vincent Bernat a912da7fa1 build: use gofumpt
Undecided if we need to use it. I think it's nice.
2023-02-11 10:03:45 +01:00

13 lines
346 B
Go

// SPDX-FileCopyrightText: 2022 Free Mobile
// SPDX-License-Identifier: AGPL-3.0-only
package orchestrator
// Configuration describes the configuration for the broker.
type Configuration struct{}
// DefaultConfiguration represents the default configuration for the broker.
func DefaultConfiguration() Configuration {
return Configuration{}
}