Files
empidee/src/commands/audio_output_devices/disableoutput.rs
2025-12-08 12:30:19 +09:00

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;
}