mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Topics command definitions
//!
//! Pure clap argument definitions for topics subcommands.
//!
//! # Architecture
//!
//! - **Commands** (this module): Pure clap Args structures (`types.rs`)
//! - **Handlers** (`handlers/topics.rs`): Implementation logic
//!
//! The implementation has been moved to `handlers/topics.rs`.

mod types;
#[allow(dead_code)]
mod utils;

pub use types::TopicsCommand;