From 41c6d1dd0b9e6f6d9ad543017c71c3c0e9f0a0ab Mon Sep 17 00:00:00 2001 From: bodymindarts Date: Tue, 9 Jan 2024 17:15:45 +0100 Subject: [PATCH] refactor(api-keys): dummy commit to trigger ci --- core/api-keys/src/graphql/schema.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/api-keys/src/graphql/schema.rs b/core/api-keys/src/graphql/schema.rs index 9d906202da..3b72394f30 100644 --- a/core/api-keys/src/graphql/schema.rs +++ b/core/api-keys/src/graphql/schema.rs @@ -10,13 +10,11 @@ pub struct AuthSubject { #[derive(Clone, Copy)] pub struct Timestamp(DateTime); - impl From> for Timestamp { fn from(dt: DateTime) -> Self { Timestamp(dt) } } - impl From for DateTime { fn from(Timestamp(dt): Timestamp) -> Self { dt