Skip to main content

cargo_tangle/command/debug/
mod.rs

1pub mod spawn;
2
3use clap::Subcommand;
4
5#[derive(Subcommand, Debug)]
6pub enum DebugCommands {
7    /// Launch a local Anvil stack and run the blueprint against it.
8    Spawn(spawn::SpawnArgs),
9}