ic-query-cli 0.11.1

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
17
//! Module: nns::node_provider
//!
//! Responsibility: assemble node-provider CLI specification, reports, and dispatch.
//! Does not own: reusable report construction or cache mechanics.
//! Boundary: adapts node-provider arguments to the typed library API.

mod reports;
mod run;
mod spec;
#[cfg(test)]
pub(in crate::nns) mod test_helpers;

use ic_query::nns::node_provider::{NnsNodeProviderCacheRequest, NnsNodeProviderRefreshRequest};

pub(super) use run::run;

impl_leaf_refresh_cli_request!(NnsNodeProviderCacheRequest, NnsNodeProviderRefreshRequest);