This commit is contained in:
Tony Rewin 2023-10-06 14:06:11 +03:00
parent 12dd58c566
commit d99b01c0ac

View File

@ -77,7 +77,7 @@ 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:80")?
.bind("127.0.0.1:8080")?
.run()
.await
}