ic-query 0.2.12

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
//! Module: sns::report::proposals_cache::attempt
//!
//! Responsibility: group proposal refresh-attempt status helpers.
//! Does not own: cache publishing, page fetching, or cache status rendering.
//! Boundary: re-exports attempt context, progress, read, and write helpers.

mod failure;
mod model;
mod read;
mod write;

pub(super) use failure::write_failed_attempt;
pub(super) use model::{SnsProposalsAttemptContext, SnsProposalsAttemptProgress};
pub(super) use read::read_sns_proposals_attempt_status;
pub(super) use write::{write_complete_attempt, write_running_attempt, write_starting_attempt};