devjournal 0.1.0

A dev first cli journaling tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use devjournal::{ExitStatus, cli::cli::Args, run};
use std::process::ExitCode;

fn main() -> ExitCode {
    let args = Args::parse();

    match run(args) {
        Ok(_code) => ExitStatus::Success.into(),
        Err(_err) => ExitStatus::Error.into(),
    }
}