This commit is contained in:
Erik Foris 2021-10-18 14:36:11 +02:00
parent 684dde255a
commit 3a35343a34

View File

@ -21,6 +21,6 @@ pub async fn web(db: SqlitePool){
.and(juniper_warp::graphiql_filter("/graphql", None)) .and(juniper_warp::graphiql_filter("/graphql", None))
.or(warp::path("graphql").and(graphql_filter)), .or(warp::path("graphql").and(graphql_filter)),
) )
.run(([127, 0, 0, 1], 8080)) .run(([0, 0, 0, 0], 8080))
.await; .await;
} }