use clap::{Args, Subcommand};
use std::path::PathBuf;
#[derive(Args, Debug)]
pub struct OciArgs {
#[command(subcommand)]
pub action: OciSubcommand,
}
#[derive(Subcommand, Debug)]
pub enum OciSubcommand {
Build {
#[arg(short, long, default_value = "app")]
target: String,
#[arg(short, long, default_value = "dist/oci")]
output: PathBuf,
},
}