17 lines
No EOL
333 B
Rust
17 lines
No EOL
333 B
Rust
use clap::Args;
|
|
use crate::utils::runnable::Runnable;
|
|
use crate::cli::{ConfigArgs, PeerArgs};
|
|
|
|
#[derive(Debug, Args)]
|
|
pub struct PeerPingCommandArgs{
|
|
#[command(flatten)]
|
|
config: ConfigArgs,
|
|
#[command(flatten)]
|
|
peer: PeerArgs,
|
|
}
|
|
|
|
impl Runnable for PeerPingCommandArgs {
|
|
async fn run(self) {
|
|
todo!()
|
|
}
|
|
} |