16 lines
386 B
Rust
16 lines
386 B
Rust
use crate::{
|
|
commands::{Command, empty_command_response, single_item_command_request},
|
|
types::AudioOutputId,
|
|
};
|
|
|
|
pub struct DisableOutput;
|
|
|
|
single_item_command_request!(DisableOutput, "disableoutput", AudioOutputId);
|
|
|
|
empty_command_response!(DisableOutput);
|
|
|
|
impl Command for DisableOutput {
|
|
type Request = DisableOutputRequest;
|
|
type Response = DisableOutputResponse;
|
|
}
|