use crate::{InternalError, ops::config::ConfigOps};
use std::time::Duration;
pub const WORKFLOW_INIT_DELAY: Duration = Duration::from_secs(10);
pub const WORKFLOW_CYCLE_TRACK_INTERVAL: Duration = Duration::from_secs(60 * 60);
pub const WORKFLOW_LOG_RETENTION_INTERVAL: Duration = Duration::from_secs(60 * 10);
pub const WORKFLOW_INTENT_CLEANUP_INTERVAL: Duration = Duration::from_secs(60 * 60);
pub const WORKFLOW_ATTESTATION_KEY_REFRESH_INTERVAL: Duration = Duration::from_secs(60 * 10);
pub const WORKFLOW_POOL_INIT_DELAY: Duration = Duration::from_secs(30);
pub const WORKFLOW_POOL_CHECK_INTERVAL: Duration = Duration::from_secs(30 * 60);
pub struct ConfigWorkflow;
impl ConfigWorkflow {
pub fn export_toml() -> Result<String, InternalError> {
ConfigOps::export_toml()
}
}