1
Fork 0
mirror of https://github.com/RGBCube/GDUS synced 2025-07-28 13:37:45 +00:00
This commit is contained in:
RGBCube 2023-12-21 18:39:55 +03:00
parent e69cec1b40
commit eb584e3bf1
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -40,7 +40,7 @@ async fn main() -> io::Result<()> {
.service(submit::submit_form)
.service(view::view)
})
.bind(("0.0.0.0", 80))?
.bind(("0.0.0.0", 8080))?
.run()
.await
}