use crate::sayings::read_all_sayings as s; use std::sync::Mutex as M; lazy_static! { static ref SAYINGS:M> = M::new(s()); } pub fn all_sayings()->Vec{SAYINGS.lock().expect("lock err").to_vec()}