use crate::common::*; #[derive(PartialEq, Clone, Debug)] pub(crate) enum Subcommand { Completions { shell: String, }, Dump, Edit, Evaluate { overrides: BTreeMap, }, Init, List, Run { overrides: BTreeMap, arguments: Vec, }, Show { name: String, }, Summary, }