This commit is contained in:
2025-09-04 16:58:20 +08:00
parent e6f937fe44
commit b524d00f7e

View File

@@ -55,7 +55,7 @@ async fn main() -> std::io::Result<()> {
.service(greet)
.service(create_user)
})
.bind("127.0.0.1:8080")?
.bind("0.0.0.0:8080")?
.run()
.await
}