1 2 3 4 5 6 7 8 9 10
use clap::Parser; #[derive(Parser)] pub struct BundleOptions {} impl super::CommandRunner for BundleOptions { fn execute(&self) -> anyhow::Result<()> { unimplemented!("Bundle command is not yet implemented") } }