From 3a35343a34aeb00c947eaee8925e54facf065f87 Mon Sep 17 00:00:00 2001 From: Erik Date: Mon, 18 Oct 2021 14:36:11 +0200 Subject: [PATCH] Fix #11 --- src/net.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.rs b/src/net.rs index 2a4c7be..ba26dac 100644 --- a/src/net.rs +++ b/src/net.rs @@ -21,6 +21,6 @@ pub async fn web(db: SqlitePool){ .and(juniper_warp::graphiql_filter("/graphql", None)) .or(warp::path("graphql").and(graphql_filter)), ) - .run(([127, 0, 0, 1], 8080)) + .run(([0, 0, 0, 0], 8080)) .await; } \ No newline at end of file