orchestrator: move broker component as orchestrator

We can have one main subcomponent per component. We don't do that for
the inlet component as there is more configuration.
This commit is contained in:
Vincent Bernat
2022-06-11 08:12:59 +02:00
parent bf0c474726
commit ee26a468b0
5 changed files with 12 additions and 12 deletions

10
orchestrator/config.go Normal file
View File

@@ -0,0 +1,10 @@
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{}
}