flatten IDMapping for serde

This commit is contained in:
Djeeberjr 2025-10-10 01:50:04 +02:00
parent 9b926f7a34
commit 2980d34394

View File

@ -12,6 +12,7 @@ pub struct Name {
#[derive(Clone, Serialize)]
pub struct IDMapping {
#[serde(flatten)]
id_map: BTreeMap<TallyID, Name>,
}