opentalk-roomserver-common 0.3.0

OpenTalk RoomServer Common
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: EUPL-1.2
// SPDX-FileCopyrightText: OpenTalk Team <mail@opentalk.eu>

use opentalk_service_auth::ApiKey;
use serde::Deserialize;
use url::Url;

#[derive(Debug, Clone, Deserialize)]
pub struct ControllerConfig {
    // The controller url
    pub url: Url,

    // The API key for the controllers services
    pub api_key: ApiKey,
}