rename the clap based version to aoc22 only

This commit is contained in:
Leo Drachenfeuer 2022-12-19 09:25:54 +01:00
parent 4af705f372
commit b6147ca7f2
Signed by: dragonleo
GPG key ID: A8338FC081137CF0
3 changed files with 2 additions and 2 deletions

11
aoc22/src/main.rs Normal file
View file

@ -0,0 +1,11 @@
mod cli;
use std::env;
use cli::execute_cli;
fn main() {
execute_cli();
for argument in env::args() {
println!("{argument}");
}
}