From c2c8290dfe407cc42f6f5bcbabfd38e8fa75a4ee Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 18 Jul 2022 10:51:59 +0200 Subject: [PATCH] removed hello_world --- src/lib/scel_api/src/graphql/query.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib/scel_api/src/graphql/query.rs b/src/lib/scel_api/src/graphql/query.rs index 07a00f3..b15c473 100644 --- a/src/lib/scel_api/src/graphql/query.rs +++ b/src/lib/scel_api/src/graphql/query.rs @@ -14,10 +14,6 @@ pub struct QueryRoot; #[Object] impl QueryRoot { - async fn hello_world(&self) -> &str { - "Hello, world!" - } - async fn get_download(&self, ctx: &Context<'_>, id: ID) -> Result> { let app = ctx.data_unchecked::>();