#![doc = include_str!("../README.md")] use std::collections::HashMap; use once_cell::sync::Lazy; pub static STORAGE: Lazy> = Lazy::new(|| serde_json::from_str(include_str!("en_us.json")).unwrap()); pub fn get(key: &str) -> Option<&str> { STORAGE.get(key).map(|s| s.as_str()) }