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
26
use crate::commands::AsyncCliCommand;

pub mod get;
pub mod list;
pub mod logs;

/// App volume management.
#[derive(Debug, clap::Parser)]
pub enum CmdAppDeployment {
    List(list::CmdAppDeploymentList),
    Get(get::CmdAppDeploymentGet),
    Logs(logs::CmdAppDeploymentLogs),
}

#[async_trait::async_trait]
impl AsyncCliCommand for CmdAppDeployment {
    type Output = ();

    async fn run_async(self) -> Result<Self::Output, anyhow::Error> {
        match self {
            Self::List(c) => c.run_async().await,
            Self::Get(c) => c.run_async().await,
            Self::Logs(c) => c.run_async().await,
        }
    }
}