(
action: AutomationAction,
)
| 3 | use crate::{parse_lcm_scope_arg, resolve_cli_project_root}; |
| 4 | |
| 5 | pub(crate) async fn handle_automation_command( |
| 6 | action: AutomationAction, |
| 7 | ) -> tracedecay::errors::Result<()> { |
| 8 | match action { |
| 9 | AutomationAction::Config { action } => handle_automation_config_command(action).await, |
| 10 | AutomationAction::Run { action } => handle_automation_run_command(action).await, |
| 11 | AutomationAction::Runs { action } => handle_automation_runs_command(action).await, |
| 12 | AutomationAction::Skills { action } => handle_automation_skills_command(action).await, |
| 13 | AutomationAction::Facts { action } => handle_automation_facts_command(action).await, |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | async fn handle_automation_runs_command( |
| 18 | action: AutomationRunsAction, |
no test coverage detected