From 83bede52ce8050ca479b58f0394dc48dd0acf49d Mon Sep 17 00:00:00 2001 From: Aleksei Voronov Date: Fri, 22 Sep 2023 17:12:49 +0200 Subject: [PATCH] Remove dead code --- src/services/database.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/services/database.rs b/src/services/database.rs index 37bba47..30f4fb6 100644 --- a/src/services/database.rs +++ b/src/services/database.rs @@ -12,13 +12,6 @@ pub struct Post { pub uri: String, } -pub struct Profile { - first_seen_at: DateTime, - did: String, - has_been_processed: bool, - likely_country_of_living: Option, -} - pub struct Database { connection_pool: PgPool, }