Files
empidee/src/commands/queue/deleteid.rs
T
oysteikt 61e077e6e5
Build and test / check (push) Successful in 1m3s
Build and test / docs (push) Successful in 1m29s
Build and test / test (push) Successful in 1m49s
Build and test / build (push) Successful in 1m58s
commands: remove Command for bi-directional assoc types
Also add a `serialize` stub for responses
2026-07-24 16:32:34 +09:00

9 lines
201 B
Rust

use crate::{
commands::{empty_command_response, single_item_command_request},
types::SongId,
};
single_item_command_request!(DeleteId, "deleteid", SongId);
empty_command_response!(DeleteId);