pace-rs 0.15.2

pace - Mindful Time Tracking: Simplify Your Focus and Boost Productivity Effortlessly.
Documentation
//! `project` subcommand

use abscissa_core::{Command, Runnable};
use clap::Parser;

/// `project` subcommand
#[derive(Command, Debug, Parser)]
pub struct ProjectSubCmd {
    // /// Option foobar. Doc comments are the help description
    // #[clap(short)]
    // foobar: Option<PathBuf>

    // /// Baz path
    // #[clap(long)]
    // baz: Option<PathBuf>

    // "free" arguments don't need a macro
    // free_args: Vec<String>,
}

impl Runnable for ProjectSubCmd {
    /// Start the application.
    fn run(&self) {
        // Your code goes here
    }
}