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

17 lines
349 B
Rust
Raw Normal View History

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