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

Fix import

This commit is contained in:
RGBCube 2023-12-20 14:31:42 +03:00
parent be1bb01bdf
commit e69cec1b40
No known key found for this signature in database
2 changed files with 5 additions and 3 deletions

View file

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