(interval_secs: u64)
| 206 | } |
| 207 | |
| 208 | fn codex_daemon_interval_task(interval_secs: u64) -> AutomationTaskPatch { |
| 209 | AutomationTaskPatch { |
| 210 | enabled: Some(true), |
| 211 | schedule: Some(Some("interval".to_string())), |
| 212 | interval_secs: Some(Some(interval_secs)), |
| 213 | cooldown_secs: Some(Some(5 * 60)), |
| 214 | ..AutomationTaskPatch::default() |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | pub(crate) fn hermes_selected_profile_targets( |
| 219 | home: &Path, |
no outgoing calls
no test coverage detected