13 lines
319 B
Rust
13 lines
319 B
Rust
use crate::commands::{Command, empty_command_request, empty_command_response};
|
|
|
|
pub struct ProtocolAll;
|
|
|
|
empty_command_request!(ProtocolAll, "protocol all");
|
|
|
|
empty_command_response!(ProtocolAll);
|
|
|
|
impl Command<'_, '_> for ProtocolAll {
|
|
type Request = ProtocolAllRequest;
|
|
type Response = ProtocolAllResponse;
|
|
}
|