1 2 3 4 5 6 7 8 9
use clap::Subcommand; pub mod new; #[derive(Debug, Subcommand)] pub enum Command { /// Creates a new timer and starts it New(new::NewOpt), }