flowey_cli/cli/debug/
mod.rspub mod dump_stage0_dag;
pub mod interrogate;
pub mod list_nodes;
pub mod list_patches;
#[derive(clap::Subcommand)]
pub enum DebugCommands {
DumpStage0Dag(dump_stage0_dag::DumpStage0Dag),
Interrogate(interrogate::Interrogate),
ListNodes(list_nodes::ListNodes),
ListPatches(list_patches::ListPatches),
}
impl DebugCommands {
pub fn run(self) -> anyhow::Result<()> {
match self {
DebugCommands::Interrogate(cmd) => cmd.run(),
DebugCommands::ListNodes(cmd) => cmd.run(),
DebugCommands::ListPatches(cmd) => cmd.run(),
DebugCommands::DumpStage0Dag(cmd) => cmd.run(),
}
}
}