ic-query-cli 0.6.0

Command-line wrapper for read-only Internet Computer metadata queries
Documentation
1
2
3
4
5
6
7
8
9
use ic_query_cli::run_from_env;

// Run the IC query CLI and report errors in a shell-friendly form.
fn main() {
    if let Err(err) = run_from_env() {
        eprintln!("{err}");
        std::process::exit(1);
    }
}