ic-query 0.2.19

Internet Computer query CLI for NNS, SNS, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module: sns::report::neurons_cache::reports
//!
//! Responsibility: build SNS neuron cache reports from stored snapshots.
//! Does not own: cache refresh, cache file IO details, text rendering, or CLI parsing.
//! Boundary: exposes cache list/status reports and cache-backed neuron list reports.

mod cache_list;
mod cache_status;
mod cached_report;

pub use cache_list::build_sns_neurons_cache_list_report;
pub use cache_status::build_sns_neurons_cache_status_report;
pub(in crate::sns::report) use cached_report::build_sns_neurons_report_from_cache;