1 2 3 4 5 6 7 8
//! Contains the dev command definition use clap::Command; /// Defines the 'dev' subcommand structure pub fn subcommand() -> Command { Command::new("dev") .about("Run in development mode") }