commands: implement common traits for responses

This commit is contained in:
2025-11-21 14:18:44 +09:00
parent 0e977d7e19
commit b2986ce910
13 changed files with 39 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
use serde::{Deserialize, Serialize};
use crate::{
commands::{
Command, Request, RequestParserError, RequestParserResult, ResponseAttributes,
@@ -8,6 +10,7 @@ use crate::{
pub struct AddId;
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct AddIdResponse {
pub id: SongId,
}