9 lines
201 B
Rust
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);
|