2023-07-15 11:13:40 +00:00

14 lines
221 B
Rust

mod stream;
mod control;
mod object;
mod server;
use std::sync::Arc;
use std::sync::Mutex;
pub type SharedConnection<C> = Arc<Mutex<Box<C>>>;
pub use stream::*;
pub use control::*;
pub use object::*;
pub use server::*;