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