support_kit/args/deployment_args.rs
1use clap::Parser;
2
3use crate::DeploymentCommand;
4
5#[derive(Clone, Debug, Parser, PartialEq)]
6#[clap(rename_all = "kebab-case")]
7pub struct DeploymentArgs {
8 #[clap(subcommand)]
9 pub command: Option<DeploymentCommand>,
10}
11
12// AppCommand::Debug => {}
13// AppCommand::Remote { command } => command.exec_remote(&controller).await?,
14// AppCommand::Local { command } => command.exec_local(&controller).await?,