This commit is contained in:
open-trade
2020-09-17 00:04:39 +08:00
parent 8fd7936f3e
commit b32a948347
5 changed files with 91 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ use hbbs::*;
async fn main() -> ResultType<()> {
env_logger::init();
let addr = "0.0.0.0:21116";
log::info!("Start Server {}", addr);
log::info!("Listening on {}", addr);
RendezvousServer::start(&addr).await?;
Ok(())
}