remove unnecessary async
Some checks failed
CI/CD Pipeline / deploy-staging (push) Has been cancelled
CI/CD Pipeline / deploy-main (push) Has been cancelled
CI/CD Pipeline / test (push) Has been cancelled

This commit is contained in:
2024-04-30 15:47:40 +02:00
parent dea6520aa9
commit 25fe4c23ef
2 changed files with 6 additions and 5 deletions

View File

@ -27,7 +27,7 @@ async fn rocket() -> _ {
.await
.unwrap();
scheduled::schedule(&db).await;
scheduled::schedule(&db);
let rocket = rocket::build().manage(db);