initial skeleton

This commit is contained in:
stoorps 2026-03-19 18:46:50 +00:00
parent dc79fa2448
commit 71f89dde9c
Signed by: stoorps
SSH key fingerprint: SHA256:AZlPfu9hTu042EGtZElmDQoy+KvMOeShLDan/fYLoNI
60 changed files with 3480 additions and 0 deletions

View file

@ -0,0 +1,15 @@
fn main() {
let cli = aim_cli::parse();
match aim_cli::dispatch(cli) {
Ok(result) => {
let output = aim_cli::render(&result);
if !output.is_empty() {
println!("{output}");
}
}
Err(error) => {
eprintln!("{error:?}");
std::process::exit(1);
}
}
}