greentic-operator 0.4.34

Greentic operator CLI for local dev and demo orchestration.
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)
}