1mod connection;
2mod id;
3pub mod pool;
4pub mod sender;
56pub type UdpTx = tokio::sync::mpsc::Sender<bytes::BytesMut>;
7pub type UdpRx = tokio::sync::mpsc::Receiver<bytes::BytesMut>;
89// re-exports
10pub use bytes;
11pub use pool::*;
12pub use sender::Sender;