This commit is contained in:
2023-10-06 13:50:20 +03:00
parent c24fee0011
commit 12dd58c566
5 changed files with 14 additions and 12 deletions

View File

@@ -77,7 +77,8 @@ async fn main() -> std::io::Result<()> {
.route("/connect", web::get().to(sse_handler))
.route("/disconnect", web::get().to(sse_handler))
})
.bind("127.0.0.1:8080")?
.bind("127.0.0.1:80")?
.run()
.await
}
}