mod endpoint; pub use endpoint::*; mod gen; pub use gen::*; mod handler; pub use handler::*; mod parser; pub use parser::*; // #[async_std::test] // async fn user_connection() { // let serv = Server::new(); // let ep = Endpoint::new("localhost:9999").await; // task::spawn(async move { ep.listen(serv).await }); // // // Create a fake client here // }