fix ip
This commit is contained in:
parent
3bb22e568a
commit
748db285a6
@ -1,6 +1,6 @@
|
|||||||
use local_ip_address::local_ip;
|
use local_ip_address::local_ip;
|
||||||
use tide::Request;
|
|
||||||
use tide::prelude::*;
|
use tide::prelude::*;
|
||||||
|
use tide::Request;
|
||||||
|
|
||||||
#[derive(Debug, Deserialize)]
|
#[derive(Debug, Deserialize)]
|
||||||
struct Sample {
|
struct Sample {
|
||||||
@ -17,7 +17,7 @@ async fn main() -> tide::Result<()> {
|
|||||||
} else {
|
} else {
|
||||||
println!("Starting server on port 8000. Could not get IP");
|
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(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user