1 2 3 4 5 6 7 8 9
pub mod common; pub mod ru; pub mod en; use crate::structs::LangData; pub trait LangProvider { fn data() -> &'static LangData; }