blob: a6341a25b0c5f206fa9b883bec32ff049cabce24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
use tokio::sync::mpsc;
use bytes::BytesMut;
pub mod auto;
mod cmd;
pub mod room;
mod parser;
mod peer;
mod shared;
type Tx = mpsc::UnboundedSender<BytesMut>;
type Rx = mpsc::UnboundedReceiver<BytesMut>;
|