caretta_sync_cli/cli/device/
ping.rs

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