caretta-sync/lazy-supplements-desktop/src/cli/device/ping.rs

17 lines
323 B
Rust
Raw Normal View History

2025-07-02 08:32:15 +09:00
use clap::Args;
use crate::cli::{ConfigArgs, PeerArgs, RunnableCommand};
#[derive(Debug, Args)]
pub struct DevicePingCommandArgs{
#[command(flatten)]
peer: PeerArgs,
#[command(flatten)]
config: ConfigArgs
}
impl RunnableCommand for DevicePingCommandArgs {
async fn run(self) {
todo!()
}
}