ic-query-cli 0.26.11

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;
mod options;
mod run;
#[cfg(test)]
pub(in crate::nns) use commands::{
    topology_capacity_command, topology_command, topology_coverage_command, topology_gaps_command,
    topology_health_command, topology_providers_command, topology_refresh_command,
    topology_regions_command, topology_summary_command, topology_versions_command,
};
#[cfg(test)]
pub(in crate::nns) use options::{
    TopologyCapacityOptions, TopologyCoverageOptions, TopologyGapsOptions, TopologyHealthOptions,
    TopologyProvidersOptions, TopologyReadOptions, TopologyRefreshOptions, TopologyRegionsOptions,
    TopologySummaryOptions, TopologyVersionsOptions,
};
pub(super) use run::{command, run};