mecha10_cli/infrastructure/
commands.rs

1//! Infrastructure command arguments
2
3use clap::Subcommand;
4
5/// Infrastructure service management (Redis, PostgreSQL, etc.)
6#[derive(Subcommand, Debug)]
7pub enum InfrastructureCommand {
8    /// Start infrastructure services
9    Start,
10
11    /// Stop infrastructure services
12    Stop,
13
14    /// Restart infrastructure services
15    Restart,
16
17    /// Check status of infrastructure services
18    Status,
19}