Skip to main content

opentalk_roomserver_common/settings/
controller_settings.rs

1// SPDX-License-Identifier: EUPL-1.2
2// SPDX-FileCopyrightText: OpenTalk Team <mail@opentalk.eu>
3
4use opentalk_service_auth::ApiKey;
5use serde::Deserialize;
6use url::Url;
7
8#[derive(Debug, Clone, Deserialize)]
9pub struct ControllerConfig {
10    // The controller url
11    pub url: Url,
12
13    // The API key for the controllers services
14    pub api_key: ApiKey,
15}