cargo fmt
catapult PR / Check (pull_request) Failing after 28s
catapult PR / Rustfmt (pull_request) Successful in 50s
catapult PR / Clippy (pull_request) Failing after 51s

This commit is contained in:
2026-06-21 22:34:45 -04:00
parent a0724de553
commit da17bab18b
3 changed files with 29 additions and 26 deletions
+4 -1
View File
@@ -16,6 +16,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
loop {
catapult::service::do_the_work(&app).await;
tokio::time::sleep(tokio::time::Duration::from_secs(catapult::app::SECONDS_TO_SLEEP)).await;
tokio::time::sleep(tokio::time::Duration::from_secs(
catapult::app::SECONDS_TO_SLEEP,
))
.await;
}
}