1 2 3 4 5 6 7 8 9
// src/coords/mod.rs #![allow(clippy::module_name_repetitions)] pub mod face_ijk; pub mod ijk; // Re-exports if desired for internal use within the crate // pub use ijk::*; // pub use face_ijk::*;