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