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-server/src/main.rs

15 lines
242 B

#[macro_use]
extern crate tracing;
mod constants;
mod log;
mod net;
use net::ServerEndpoint;
#[async_std::main]
async fn main() {
log::initialise();
let serv = ServerEndpoint::new("0.0.0.0:10022").await;
serv.listen().await;
}