summaryrefslogtreecommitdiff
path: root/src/setup/repo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/setup/repo.rs')
-rw-r--r--src/setup/repo.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/setup/repo.rs b/src/setup/repo.rs
index c4f5fd8..e7c61f2 100644
--- a/src/setup/repo.rs
+++ b/src/setup/repo.rs
@@ -1,11 +1,11 @@
use sqlx::{SqliteConnection, Transaction, sqlite::Sqlite};
pub trait Provider {
- fn setup(&mut self) -> Setup;
+ fn setup(&mut self) -> Setup<'_>;
}
impl Provider for Transaction<'_, Sqlite> {
- fn setup(&mut self) -> Setup {
+ fn setup(&mut self) -> Setup<'_> {
Setup(self)
}
}