//! Module: workflow::config
//!
//! Responsibility: provide shared workflow scheduling constants and config export.
//! Does not own: configuration storage, timer registration, or endpoint authorization.
//! Boundary: delegates config serialization to ops and centralizes workflow cadences.
use crate::;
use Duration;
///
/// Workflow scheduling constants.
///
/// Shared initial delay for background workflow timers to allow init work to settle.
pub const WORKFLOW_INIT_DELAY: Duration = from_secs;
/// Root delegated-proof renewal sweep cadence (1 minute).
pub const WORKFLOW_AUTH_RENEWAL_INTERVAL: Duration = from_mins;
///
/// ConfigWorkflow
///
/// Workflow facade for configuration export.
///
;