start-timer 0.0.4

Utility to Start a Timer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod command;

use clap::Parser;

use self::command::Command;

#[derive(Debug, Parser)]
#[command(
    name = "start-timer",
    about = "CLI Utility to Start a Timer",
    author = "Esteban Borai <estebanborai@gmail.com> (https://github.com/EstebanBorai/start-timer)",
    next_line_help = true
)]
pub struct StartTimerCli {
    #[clap(subcommand)]
    pub command: Command,
}