//! `eish` command line interface.
//!//! The heavy lifting lives in the library crate; this binary only parses
//! arguments and prints the result.
modcli;useclap::Parser;fnmain()->std::process::ExitCode{let cli =cli::Cli::parse();// Logging is installed after parsing because `--verbose` and `--quiet`
// decide its level.
cli.init_logging();
cli.run()}