1 2 3 4 5 6 7 8 9 10 11 12 13
//! V4 Modules //! const MOD_PATH: &str = "tmf697/v4"; pub mod work; pub mod work_order; pub mod work_order_item; /// Modules available for this API `MOD_PATH` pub fn get_objects() -> Vec<&'static str> { vec![work::CLASS_PATH, work_order::CLASS_PATH] }