diff options
Diffstat (limited to 'indexer/src/main.rs')
-rw-r--r-- | indexer/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indexer/src/main.rs b/indexer/src/main.rs index 5af53cd..17c71ec 100644 --- a/indexer/src/main.rs +++ b/indexer/src/main.rs @@ -11,7 +11,7 @@ struct AppState { async fn main() -> std::io::Result<()> { println!("Hello, world! Im the indexer!"); - serve_http_endpoint("127.0.0.1", 4444).await + serve_http_endpoint("0.0.0.0", 4444).await } async fn serve_http_endpoint(address: &str, port: u16) -> std::io::Result<()> { |