This commit is contained in:
2026-03-26 00:21:28 +00:00
parent 27083de136
commit 0ad9cbd85e
+1 -1
View File
@@ -9,6 +9,6 @@ async fn main() {
db.execute_unprepared("PRAGMA foreign_keys = ON;") db.execute_unprepared("PRAGMA foreign_keys = ON;")
.await .await
.unwrap(); .unwrap();
let db_fn = async move |_| Ok((db)); let db_fn = async move |_| Ok(db);
cli::run_cli_with_connection(migration::Migrator, db_fn).await; cli::run_cli_with_connection(migration::Migrator, db_fn).await;
} }