Skip to main content

opentalk_types_common/roomserver/
mod.rs

1// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
2//
3// SPDX-License-Identifier: EUPL-1.2
4
5//! Data types related to the roomserver
6
7mod device_secret;
8mod token;
9
10pub use device_secret::{DEVICE_SECRET_MAX_LENGTH, DEVICE_SECRET_MIN_LENGTH, DeviceSecret};
11pub use token::Token;