16 lines
379 B
Rust
16 lines
379 B
Rust
use crate::{
|
|
commands::{Command, empty_command_response, single_item_command_request},
|
|
types::AudioOutputId,
|
|
};
|
|
|
|
pub struct EnableOutput;
|
|
|
|
single_item_command_request!(EnableOutput, "enableoutput", AudioOutputId);
|
|
|
|
empty_command_response!(EnableOutput);
|
|
|
|
impl Command for EnableOutput {
|
|
type Request = EnableOutputRequest;
|
|
type Response = EnableOutputResponse;
|
|
}
|