ic-query 0.2.17

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
14
15
16
17
18
//! Module: sns::report::live
//!
//! Responsibility: group live SNS source, fetch, query, conversion, and wire modules.
//! Does not own: command parsing, report assembly, cache IO, or rendering.
//! Boundary: exposes live-source adapters and test-only wire helpers to SNS reports.

mod client;
mod convert;
mod fetch;
mod query;
mod types;

pub(super) use super::SnsHostError;
pub(super) use client::LiveSnsSource;
#[cfg(test)]
pub(super) use convert::metadata_row;
#[cfg(test)]
pub(super) use types::IcrcMetadataValue;