1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub mod calcium_sulfonate; pub mod conventional; pub use calcium_sulfonate::*; pub use conventional::*; use crate::lubrications::Grease; pub fn all_calcium_greases() -> Vec<&'static Grease> { vec![ &conventional::CALCIUM_GREASE, &calcium_sulfonate::CALCIUM_SULFONATE_GREASE, ] }