summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-21 17:34:58 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-21 17:34:58 +0200
commita76200bb7adb6189d84e0e98d6233a470ebeee98 (patch)
treef0c1dd5aba99ff33d01a5780f695cf65a9dcc411 /src/graphql/query.rs
parenta92fb07d23fb2268a6f4e650c5cbd00ad993e760 (diff)
Authentication for endpoints
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index ed83a9f..254dab6 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -1,4 +1,4 @@
-use crate::graphql::types::user;
+use crate::{errors::AppError, graphql::types::user};
use async_graphql::{Context, Object};
pub struct Query;