chore: fmt all
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
b3af0be6b5
commit
c81a988061
@ -1,17 +1,11 @@
|
|||||||
use super::auth::UserFromSession;
|
use super::auth::UserFromSession;
|
||||||
use crate::{router::AppState};
|
use crate::router::AppState;
|
||||||
|
|
||||||
use async_graphql::http::{playground_source, GraphQLPlaygroundConfig};
|
use async_graphql::http::{playground_source, GraphQLPlaygroundConfig};
|
||||||
use async_graphql::{EmptySubscription, Schema};
|
use async_graphql::{EmptySubscription, Schema};
|
||||||
use async_graphql_axum::{GraphQLRequest, GraphQLResponse};
|
use async_graphql_axum::{GraphQLRequest, GraphQLResponse};
|
||||||
use axum::response::Html;
|
use axum::response::Html;
|
||||||
use axum::{
|
use axum::{http::StatusCode, response::IntoResponse, routing::get, Extension, Router};
|
||||||
http::{StatusCode},
|
|
||||||
response::{IntoResponse},
|
|
||||||
routing::get,
|
|
||||||
Extension, Router,
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
use como_gql::graphql::{ComoSchema, MutationRoot, QueryRoot};
|
use como_gql::graphql::{ComoSchema, MutationRoot, QueryRoot};
|
||||||
use como_infrastructure::register::ServiceRegister;
|
use como_infrastructure::register::ServiceRegister;
|
||||||
|
@ -10,4 +10,5 @@ use uuid::Uuid;
|
|||||||
pub struct ProjectDto {
|
pub struct ProjectDto {
|
||||||
pub id: Uuid,
|
pub id: Uuid,
|
||||||
pub name: String,
|
pub name: String,
|
||||||
|
pub description: Option<String>,
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
|
|
||||||
|
|
||||||
pub mod graphql;
|
pub mod graphql;
|
||||||
mod items;
|
mod items;
|
||||||
mod projects;
|
mod projects;
|
||||||
|
Loading…
Reference in New Issue
Block a user