Skip to main content

opentalk_roomserver_common/
lib.rs

1// SPDX-License-Identifier: EUPL-1.2
2// SPDX-FileCopyrightText: OpenTalk Team <mail@opentalk.eu>
3
4//! # RoomServer Common
5//!
6//! Types that are shared between the `opentalk-roomserver` crate and signaling
7//! module crates are placed here. They can't be part of the `opentalk-roomserver`
8//! since this would create a dependency cycle.
9
10pub mod application_state;
11pub mod settings;
12pub mod token_store;