mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
//! Infrastructure command arguments

use clap::Subcommand;

/// Infrastructure service management (Redis, PostgreSQL, etc.)
#[derive(Subcommand, Debug)]
pub enum InfrastructureCommand {
    /// Start infrastructure services
    Start,

    /// Stop infrastructure services
    Stop,

    /// Restart infrastructure services
    Restart,

    /// Check status of infrastructure services
    Status,
}