Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
umonkey committed Jan 9, 2025
1 parent 272dfd1 commit 8157991
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/services/database/database_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use async_trait::async_trait;
#[async_trait]
pub trait DatabaseInterface: Send + Sync {
async fn get_record(&self, query: SelectQuery) -> Result<Option<Attributes>>;
#[allow(unused)]
async fn get_records(&self, query: SelectQuery) -> Result<Vec<Attributes>>;
async fn add_record(&self, query: InsertQuery) -> Result<()>;
async fn update(&self, query: UpdateQuery) -> Result<()>;
Expand Down

0 comments on commit 8157991

Please sign in to comment.