chore: fmt all

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-05-28 15:43:29 +02:00
parent b3af0be6b5
commit c81a988061
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912
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;

View File

@ -10,4 +10,5 @@ use uuid::Uuid;
pub struct ProjectDto {
pub id: Uuid,
pub name: String,
pub description: Option<String>,
}

View File

@ -1,5 +1,3 @@
pub mod graphql;
mod items;
mod projects;