1 2 3 4 5 6 7 8 9
pub mod simple; pub use simple::*; use crate::lubrications::Grease; pub fn all_sodium_greases() -> Vec<&'static Grease> { vec![&simple::SODIUM_GREASE] }