// Context API: ctx.db(), ctx.dispatch_job(...). Crons are leader-only.
// Schedule format: 6-field cron (sec min hour day month weekday). Validated at compile time.
#[allow(unused_imports)]
use forge::prelude::*;
#[forge::cron(schedule = "0 0 * * * *")]
pub async fn {{name}}(ctx: &CronContext) -> Result<()> {
let _ = ctx;
// TODO: replace with the work to perform on each tick
Ok(())
}