This commit is contained in:
Aleksandr 2025-12-22 21:59:51 +03:00
parent 843ae33a3f
commit 513826750b
11 changed files with 239 additions and 34 deletions

View file

@ -48,7 +48,10 @@ status_code::direct!(reqs::search::Ok => OK);
status_code::map!(reqs::search::Err => [NoSuchAuthor]);
#[data]
pub struct Get {}
pub struct Get {
#[serde(default)]
pub resolve_marks: bool,
}
impl_req!(Get => [reqs::get::Ok; reqs::get::Err]);