ic-query-cli 0.25.5

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
mod commands;
pub(in crate::nns) mod model;
mod options;
mod run;
pub(super) use crate::cli::common::{json_arg, source_endpoint_arg};
pub(super) use commands::{
    command, command_with_list, list_command, output_path_arg, refresh_lock_stale_after_arg,
};
#[cfg(test)]
pub(super) use commands::{info_usage, list_usage, refresh_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;