nmd_core/resource/
text_reference.rs

1use std::collections::HashMap;
2
3pub type TextReferenceKey = String;
4
5pub type TextReference = String;
6
7pub type TextReferenceMap = HashMap<TextReferenceKey, TextReference>;