Implement reminding

This commit is contained in:
Rahix 2026-03-02 10:13:11 +01:00
parent aebbcd7815
commit 37140b5b59
2 changed files with 138 additions and 4 deletions

View file

@ -17,7 +17,7 @@ async fn run() -> anyhow::Result<()> {
scheduler::reschedule_recurring_tasks(&ctx, &tasks).await?;
reminder::remind_due_tasks(&ctx, &tasks).await?;
reminder::remind_all_tasks(&ctx, &tasks).await?;
Ok(())
}