jobber3 0.1.0

Command line tool for tracking work time
mod args;
mod date_time;
mod partial_date_time;
mod run;
mod tests;

use args::Args;
use clap::Parser;
use run::run;

fn main() {
    let args = Args::parse();
    run(args);
}