caretta-sync/desktop/src/cli/config/list.rs

17 lines
318 B
Rust
Raw Normal View History

2025-08-20 06:50:35 +09:00
use clap::Args;
use crate::utils::runnable::Runnable;
use crate::cli::ConfigArgs;
#[derive(Debug, Args)]
pub struct ConfigListCommandArgs{
#[command(flatten)]
config: ConfigArgs,
#[arg(short,long)]
all: bool
}
impl Runnable for ConfigListCommandArgs {
async fn run(self) {
todo!()
}
}