use clap::Parser;
use errgonomic::exit_result;
use fjall_cli::Command;
use std::process::ExitCode;
#[tokio::main]
async fn main() -> ExitCode {
let args = Command::parse();
let result = args.run().await;
exit_result(result)
}
#[test]
fn verify_cli() {
use clap::CommandFactory;
Command::command().debug_assert();
}