opentalk-roomserver-types-chat 0.0.39

Signaling types for the OpenTalk chat module in the roomserver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

//! Signaling state for the `chat` namespace

mod breakout_history;
mod chat_chunk;
mod chat_state;
mod private_history;
mod stored_message;

pub use breakout_history::BreakoutHistory;
pub use chat_chunk::{CHAT_CHUNK_SIZE, ChatChunk};
pub use chat_state::ChatState;
pub use private_history::PrivateHistory;
pub use stored_message::StoredMessage;