cargo-advent 0.1.0

Yet another cli to help with Advent of Code challenges
Documentation
1
2
3
4
5
6
7
8
9
10
use cargo_advent::AdventResult;
use tracing::debug;

mod command_line;

fn main() -> AdventResult<()> {
    let app_context = command_line::parse_command_line();
    debug!("{:#?}", app_context);
    app_context.run_action()
}