start-timer 0.0.4

Utility to Start a Timer
Documentation
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),
}