tvc 0.1.0-alpha.1

Experimental CLI for Turnkey Verifiable Cloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! App list command.

use clap::Args as ClapArgs;

/// List apps.
#[derive(Debug, ClapArgs)]
#[command(about, long_about = None)]
pub struct Args {
    /// Filter by app name.
    #[arg(short, long)]
    pub name: Option<String>,
}

/// Run the app list command.
pub async fn run(args: Args) -> anyhow::Result<()> {
    println!("Listing apps with filter: {:?}", args.name);
    todo!("app list not yet implemented")
}