My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/games/rstnode/rst-core/src/net/mod.rs

20 lines
372 B

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
// }