13 lines
261 B
Rust
13 lines
261 B
Rust
use crate::commands::{Command, empty_command_request, empty_command_response};
|
|
|
|
pub struct Kill;
|
|
|
|
empty_command_request!(Kill, "kill");
|
|
|
|
empty_command_response!(Kill);
|
|
|
|
impl Command for Kill {
|
|
type Request = KillRequest;
|
|
type Response = KillResponse;
|
|
}
|