This commit is contained in:
2023-10-11 23:54:07 +03:00
parent e32e4aade5
commit 82aee72cee
2 changed files with 1 additions and 3 deletions

View File

@@ -131,7 +131,7 @@ async fn main() -> std::io::Result<()> {
.app_data(web::Data::new(state.clone()))
.route("/", web::get().to(connect_handler))
})
.bind("127.0.0.1:8080")?
.bind("127.0.0.1")?
.run()
.await
}