ic-query 0.8.2

Internet Computer query library for NNS, SNS, ICRC, and related public network metadata
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Module: sns::report::neurons_cache::storage
//!
//! Responsibility: load, locate, and summarize complete SNS neuron cache snapshots.
//! Does not own: refresh collection, attempt persistence, report rendering, or CLI parsing.
//! Boundary: centralizes cache-file storage reads for neuron cache reports.

mod errors;
mod load;
mod lookup;
mod scan;
mod summary;

pub(super) use lookup::load_sns_neurons_cache_for_input;
pub(super) use scan::{collect_sns_neurons_cache_paths, read_sns_neurons_cache_header};
pub(super) use summary::{list_sns_neurons_cache_summaries, load_sns_neurons_cache_summary_at};