Skip to main content

caretta_sync_cli/cli/device/
scan.rs

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