Files
empidee/src/commands/connection_settings/protocol_all.rs
T
2026-01-09 13:37:17 +09:00

13 lines
311 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;
}