ic-query 0.2.19

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::commands::spec::values
//!
//! Responsibility: group clap value enums used by SNS command specs.
//! Does not own: option parsing, report models, or command execution.
//! Boundary: re-exports command-local value parsers for SNS command builders.

mod list;
mod neurons;
mod proposals;

pub(in crate::sns::commands) use list::SnsListSortArg;
pub(in crate::sns::commands) use neurons::SnsNeuronsSortArg;
pub(in crate::sns::commands) use proposals::{
    SnsProposalStatusArg, SnsProposalTopicArg, SnsProposalsSortArg,
};