Skip to content

Commit

Permalink
Finally satisfy clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
DenuxPlays committed Dec 7, 2024
1 parent 89fb8a8 commit a074624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub trait Seeder: Send + Sync {
fn name(&self) -> String;

/// Seeds the database with initial data.
fn seed(&self, db: &DatabaseConnection) -> impl Future<Output = AppResult<()>>;
fn seed(&self, db: &DatabaseConnection) -> impl Future<Output = AppResult<()>> + Send + Sync;
}

#[derive(Default, Clone, Debug)]
Expand Down

0 comments on commit a074624

Please sign in to comment.