Skip to main content

caretta_sync_cli/cli/device/
info.rs

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