caretta_sync_cli/cli/device/remove.rs
1use crate::cli::{ConfigArgs, args::DeviceIdentifierArgs};
2use caretta_sync_core::utils::runnable::Runnable;
3use clap::Args;
4
5#[derive(Debug, Args)]
6pub struct DeviceRemoveCommandArgs {
7 #[command(flatten)]
8 device: DeviceIdentifierArgs,
9 #[command(flatten)]
10 config: ConfigArgs,
11}
12
13impl Runnable for DeviceRemoveCommandArgs {
14 fn run(self, app_name: &'static str) {
15 todo!()
16 }
17}