refactor projekt to implement and test other cli libs

This commit is contained in:
Leo Drachenfeuer 2022-12-13 05:02:02 +01:00
parent f091f19a55
commit 8b16296d5e
Signed by: dragonleo
GPG key ID: A8338FC081137CF0
34 changed files with 35 additions and 15 deletions

7
aoc22-clap/src/main.rs Normal file
View file

@ -0,0 +1,7 @@
mod cli;
use cli::execute_cli;
fn main() {
execute_cli();
}