opentalk-roomserver-common 0.3.0

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

//! # RoomServer Common
//!
//! Types that are shared between the `opentalk-roomserver` crate and signaling
//! module crates are placed here. They can't be part of the `opentalk-roomserver`
//! since this would create a dependency cycle.

pub mod application_state;
pub mod settings;
pub mod token_store;