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