Prepare for reminding

This commit is contained in:
Rahix 2026-03-02 08:46:52 +01:00
parent c1c0ced266
commit aebbcd7815
5 changed files with 124 additions and 5 deletions

View file

@ -1,10 +1,11 @@
#![allow(unused)]
mod task;
mod collect;
mod ci_meta;
mod collect;
mod context;
mod reminder;
mod scheduler;
mod task;
mod util;
use context::Context;
@ -16,6 +17,8 @@ async fn run() -> anyhow::Result<()> {
scheduler::reschedule_recurring_tasks(&ctx, &tasks).await?;
reminder::remind_due_tasks(&ctx, &tasks).await?;
Ok(())
}