Stub rescheduling algo

This commit is contained in:
Rahix 2026-03-01 16:42:18 +01:00
parent b3e0270e38
commit adc6b7866a
4 changed files with 186 additions and 12 deletions

View file

@ -13,7 +13,7 @@ async fn run() -> anyhow::Result<()> {
let tasks = collect::collect_tasks(&ctx).await?;
scheduler::schedule_recurring_tasks(&ctx, &tasks).await?;
scheduler::reschedule_recurring_tasks(&ctx, &tasks).await?;
Ok(())
}