accounted for null

This commit is contained in:
Colin McKechney
2023-04-30 21:03:44 +00:00
parent ec08c12780
commit 5117a3318f
2 changed files with 34 additions and 35 deletions

View File

@@ -58,7 +58,7 @@ async fn main() -> std::io::Result<()> {
)
.route("/", web::get().to(index))
})
.bind(("127.0.0.1", PORT))?
.bind(("0.0.0.0", PORT))?
.run()
.await;