1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Subcommand implementations.
//!
//! One module per top-level subcommand. Each module exposes a
//! `run(...)` function that takes the parsed argv struct and
//! returns `Result<(), CliError>`.
//!
//! Phase 1 wires `version` first so the binary builds + the clap
//! router is exercised; the read-only substrate-driven commands
//! (`identity`, `snapshot`, `audit`, `log`, `failures`, `daemon`,
//! `cap`, `peer`, `port`, `db`, `netdb`) land in subsequent
//! commits.
pub mod admin;
pub mod aggregator;
pub mod audit;
pub mod blob;
pub mod cap;
pub mod channel;
pub mod completion;
pub mod daemon;
pub mod db;
pub mod forwarding;
pub mod gateway;
pub mod ice;
pub mod identity;
pub mod logs;
pub mod man;
pub mod mcp;
pub mod netdb;
pub mod peer;
pub mod port;
pub mod rpc;
pub mod snapshot;
pub mod subnet;
pub mod transfer;
pub mod typegen;
pub mod version;
pub mod wrap;