use clap::Parser; #[allow(clippy::wildcard_imports)] use keyfork_derive_key::*; fn main() -> Result<()> { let args = cli::Command::parse(); args.handle()?; Ok(()) }