ic_query/nns/registry/mod.rs
1//! NNS registry-version requests, reports, host builders, and renderers.
2
3mod report;
4
5pub use report::{
6 DEFAULT_NNS_REGISTRY_SOURCE_ENDPOINT, NnsRegistryVersionReport, NnsRegistryVersionRequest,
7 nns_registry_version_report_text,
8};
9#[cfg(feature = "host")]
10pub use report::{
11 NnsRegistryHostError, NnsRegistrySource, NnsRegistryVersionData,
12 build_nns_registry_version_report, build_nns_registry_version_report_with_source,
13};