net-cli 0.27.0-beta.2

Unified `net-mesh` command-line tool for the Net mesh
//! 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 gateway;
pub mod ice;
pub mod identity;
pub mod logs;
pub mod man;
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;