-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmod.rs
More file actions
25 lines (23 loc) · 923 Bytes
/
mod.rs
File metadata and controls
25 lines (23 loc) · 923 Bytes
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
//! Presentation Layer
//!
//! This layer contains user-facing delivery mechanisms for the deployer application.
//! It follows DDD architecture, separating presentation concerns from application
//! and domain logic.
//!
//! ## Module Structure
//!
//! ```text
//! presentation/
//! └── cli/ # CLI delivery mechanism (Clap-based command-line interface)
//! ```
//!
//! The SDK delivery mechanism has been extracted into the `torrust-tracker-deployer-sdk`
//! workspace package (`packages/sdk/`).
pub mod cli;
// Re-export commonly used CLI types for backward compatibility.
// External consumers can use either `presentation::Cli` or `presentation::cli::Cli`.
pub use cli::{
handle_error, Cli, CommandError, Commands, CreateCommandError, CreateEnvironmentCommandError,
CreateEnvironmentTemplateCommandError, DestroySubcommandError, GlobalArgs, ProgressReporter,
Theme, UserOutput, VerbosityLevel,
};