@@ 96,7 96,7 @@ async fn random(args: web::Path<RandomArgs>) -> impl Responder {
async fn main() -> std::io::Result<()> {
log::info!("startedth uppeth");
HttpServer::new(|| App::new().service(random))
- .bind(("127.0.0.1", 3000))?
+ .bind(("0.0.0.0", 3000))?
.run()
.await
}