ic-query-cli 0.15.0

Command-line wrapper for read-only Internet Computer metadata queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod commands;
pub(in crate::nns) mod model;
mod options;
mod run;
pub(super) use crate::cli::common::{format_arg, source_endpoint_arg};
pub(super) use commands::{
    info_usage, list_command, network_arg, output_path_arg, refresh_lock_stale_after_arg,
    refresh_usage,
};
#[cfg(test)]
pub(super) use commands::{list_usage, usage};
pub(super) use model::{NnsLeafCommandSpec, NnsLeafReports};
#[cfg(test)]
pub(super) use options::NnsLeafListOptions;
pub(super) use options::{NnsCommonOptions, NnsLeafInfoOptions, NnsLeafRefreshOptions};
pub(super) use run::{run_cached_leaf, run_leaf};