lov/
lib.rs

1mod min_prefixes;
2pub struct LocalPrefix {
3    pub location: &'static str,
4    pub content: &'static str,
5    pub name: &'static str,
6    pub title: &'static str,
7}
8
9pub const LOCAL_PREFIXES: &'static [LocalPrefix] = min_prefixes::LOCAL_PREFIXES;