prototype...

This commit is contained in:
open-trade
2020-03-06 17:18:22 +08:00
parent d188a5f5ea
commit 1695b5e357
11 changed files with 1045 additions and 10 deletions

View File

@@ -1,3 +1,12 @@
fn main() {
println!("Hello, world!");
}
// https://tools.ietf.org/rfc/rfc5128.txt
// https://blog.csdn.net/bytxl/article/details/44344855
use hbbs::*;
use std::error::Error;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
env_logger::init();
RendezvousServer::start("0.0.0.0:21116").await?;
Ok(())
}