ic-query 0.5.23

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: cache_file::json
//!
//! Responsibility: shared JSON cache loading and refresh announcements.
//! Does not own: command-specific cache schemas or refresh execution.
//! Boundary: exposes schema/network validation helpers and user-facing refresh notices.

mod announce;
mod errors;
mod load;
mod model;

pub use announce::announce_cache_refresh;
pub use errors::LoadJsonCacheErrorMapper;
pub use load::load_json_cache;
pub use model::{CachedJsonReport, JsonCacheReport, LoadJsonCacheRequest};