cargo_new_aoc 0.1.1

A program that facilitates creating Rust projects for Advent of Code solutions
Documentation
1
2
3
4
5
6
7
use cargo_new_aoc::{run, Args};
use clap::Parser;

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