Skip to main content

greentic_operator/
wizard_executor.rs

1use crate::wizard::{WizardExecutionReport, WizardMode, WizardPlan};
2
3pub fn execute(
4    mode: WizardMode,
5    plan: &WizardPlan,
6    offline: bool,
7) -> anyhow::Result<WizardExecutionReport> {
8    crate::wizard::execute_plan(mode, plan, offline)
9}