Removed unused imports
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user