opentalk-roomserver-common 0.3.0

OpenTalk RoomServer Common
Documentation
// SPDX-License-Identifier: EUPL-1.2
// SPDX-FileCopyrightText: OpenTalk Team <mail@opentalk.eu>

pub mod controller_settings;
pub mod runtime_settings;
pub mod settings_file;
pub mod signaling_salt;

pub use controller_settings::ControllerConfig;
pub use runtime_settings::{
    Settings,
    conference::Conference,
    defaults::Defaults,
    http::Http,
    internal::Internal,
    reports::Reports,
    task::Task,
    telemetry::{Metrics, Monitoring, Tracing},
};
pub use settings_file::SettingsFile;