Removed some debug code

This commit is contained in:
SinTan1729
2023-04-08 15:41:23 -05:00
parent 66868effba
commit b779019716
2 changed files with 1 additions and 2 deletions

View File

@@ -130,7 +130,7 @@ async fn main() -> std::io::Result<()> {
.service(login)
.default_service(Files::new("/", "./resources/").index_file("index.html"))
})
.bind(("0.0.0.0", 2000))?
.bind(("0.0.0.0", 4567))?
.run()
.await
}