This commit is contained in:
Simon 2023-12-19 16:17:53 +01:00
parent 3bb22e568a
commit 748db285a6

View File

@ -1,6 +1,6 @@
use local_ip_address::local_ip;
use tide::Request;
use tide::prelude::*;
use tide::Request;
#[derive(Debug, Deserialize)]
struct Sample {
@ -17,7 +17,7 @@ async fn main() -> tide::Result<()> {
} else {
println!("Starting server on port 8000. Could not get IP");
}
app.listen("127.0.0.1:8000").await?;
app.listen("0.0.0.0:8000").await?;
Ok(())
}