ic-query 0.1.16

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
use ic_query::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);
    }
}