1
Fork 0
mirror of https://github.com/RGBCube/GDUS synced 2025-07-27 13:07:45 +00:00

Make the port the server runs on 8080

This commit is contained in:
RGBCube 2024-05-11 22:48:59 +03:00
parent db3266d1d8
commit e89a522e33
No known key found for this signature in database

View file

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