Files
empidee/src/commands/controlling_playback/play.rs
T
2025-12-08 12:30:19 +09:00

16 lines
339 B
Rust

use crate::{
commands::{Command, empty_command_response, single_optional_item_command_request},
types::SongPosition,
};
pub struct Play;
single_optional_item_command_request!(Play, "play", SongPosition);
empty_command_response!(Play);
impl Command for Play {
type Request = PlayRequest;
type Response = PlayResponse;
}