scud 0.2.0

A secret library atm, woo woo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod cli;
mod commands;
mod logging;

use std::time::SystemTime;

use crate::{
    cli::Cli,
    commands::parser::process_args,
};

use clap::Parser;

fn main() {
    let start_time = SystemTime::now();
    let args = Cli::parse();
    process_args(args, start_time);
}