mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
15 lines
243 B
Rust
15 lines
243 B
Rust
#[allow(clippy::module_inception)]
|
|
mod chat;
|
|
pub use chat::{ChatSystem, ChatProvider};
|
|
|
|
mod room;
|
|
pub use room::ChatRoom;
|
|
|
|
mod user;
|
|
pub use user::UserHandle;
|
|
|
|
mod config;
|
|
pub use config::{ChatSystemConfig};
|
|
|
|
pub type ChatImpl = ChatProvider;
|