agentd/triggers/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-only
2//! Trigger primitives: the cron schedule parser behind the `schedule` start
3//! node.
4
5// The 5-field cron parser, feature-gated (no deps). The `schedule` start node
6// (`runtime::starts`) uses `timer::CronExpr`.
7#[cfg(feature = "cron")]
8pub mod timer;