From 24388ba81515c57e812994fdb9147e6de7f3a5b6 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 21 Aug 2024 12:38:20 +0200 Subject: Reformat types mod --- src/graphql/types.rs | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/graphql/types.rs (limited to 'src/graphql/types.rs') diff --git a/src/graphql/types.rs b/src/graphql/types.rs deleted file mode 100644 index 79241df..0000000 --- a/src/graphql/types.rs +++ /dev/null @@ -1,29 +0,0 @@ -use async_graphql::Object; -use serde::{Deserialize, Serialize}; - -#[derive(Clone, Debug, Serialize, Deserialize)] -pub struct User { - pub id: i32, - pub email: String, - pub password: String, - pub is_admin: bool, -} - -#[Object] -impl User { - async fn id(&self) -> i32 { - self.id - } - - async fn email(&self) -> String { - self.email.clone() - } - - async fn password(&self) -> String { - String::from("******") - } - - async fn is_admin(&self) -> bool { - self.is_admin - } -} -- cgit v1.2.3-71-g8e6c