diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 17:34:58 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 17:34:58 +0200 |
commit | a76200bb7adb6189d84e0e98d6233a470ebeee98 (patch) | |
tree | f0c1dd5aba99ff33d01a5780f695cf65a9dcc411 /src/graphql/query.rs | |
parent | a92fb07d23fb2268a6f4e650c5cbd00ad993e760 (diff) |
Authentication for endpoints
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r-- | src/graphql/query.rs | 2 |
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; |