library: shape: do not expose sub-modules

This commit is contained in:
Bruno BELANYI 2020-03-23 12:27:12 +01:00 committed by Antoine Martin
parent bef61b43b8
commit db4b8b05ba
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ impl Bounded for dyn Shape {
}
}
pub mod sphere;
mod sphere;
pub use sphere::*;
pub mod triangle;
mod triangle;
pub use triangle::*;