aboutsummaryrefslogtreecommitdiff
path: root/src/server/mod.rs
blob: 3698d84633ee9b0b226ba79978b9911a7f16a6c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
use tokio::sync::mpsc;
use bytes::BytesMut;

pub mod auto;
mod cmd;
pub mod room;
mod shared;
mod peer;

type Tx = mpsc::UnboundedSender<BytesMut>;
type Rx = mpsc::UnboundedReceiver<BytesMut>;