Removed unused imports

This commit is contained in:
2022-10-04 11:07:14 +02:00
parent ae74f66c3a
commit 5e9001b998
3 changed files with 21 additions and 37 deletions

View File

@@ -1,8 +1,8 @@
use async_graphql::{Context, EmptySubscription, Object, Schema, SimpleObject};
use async_graphql::{Context, EmptySubscription, Object, Schema};
use como_domain::item::{requests::CreateItemDto, responses::CreatedItemDto, ItemState};
use como_domain::item::{requests::CreateItemDto, responses::CreatedItemDto};
use como_infrastructure::register::ServiceRegister;
use uuid::Uuid;
pub type CibusSchema = Schema<QueryRoot, MutationRoot, EmptySubscription>;
@@ -63,7 +63,7 @@ pub struct QueryRoot;
#[Object]
impl QueryRoot {
async fn hello(&self, ctx: &Context<'_>) -> String {
async fn hello(&self, _ctx: &Context<'_>) -> String {
"hello".into()
}
}