chore: fmt all

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-05-28 15:43:29 +02:00
parent b3af0be6b5
commit c81a988061
3 changed files with 3 additions and 10 deletions

View File

@@ -1,17 +1,11 @@
use super::auth::UserFromSession;
use crate::{router::AppState};
use crate::router::AppState;
use async_graphql::http::{playground_source, GraphQLPlaygroundConfig};
use async_graphql::{EmptySubscription, Schema};
use async_graphql_axum::{GraphQLRequest, GraphQLResponse};
use axum::response::Html;
use axum::{
http::{StatusCode},
response::{IntoResponse},
routing::get,
Extension, Router,
};
use axum::{http::StatusCode, response::IntoResponse, routing::get, Extension, Router};
use como_gql::graphql::{ComoSchema, MutationRoot, QueryRoot};
use como_infrastructure::register::ServiceRegister;