torrust_tracker_deployer_lib/presentation/cli/views/commands/mod.rs
1//! Command-specific views
2//!
3//! This module contains view components organized by command.
4//! Each command has its own submodule with views for rendering
5//! command-specific output.
6
7pub mod configure;
8pub mod create;
9pub mod destroy;
10pub mod exists;
11pub mod list;
12pub mod provision;
13pub mod purge;
14pub mod register;
15pub mod release;
16pub mod render;
17pub mod run;
18pub mod shared;
19pub mod show;
20pub mod test;
21pub mod validate;