From bef61b43b8f1ede4a61d6d197115c83f0d51e512 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 23 Mar 2020 12:27:04 +0100 Subject: [PATCH] library: material: do not expose sub-modules --- src/material/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/material/mod.rs b/src/material/mod.rs index 4c06ddb..699eac3 100644 --- a/src/material/mod.rs +++ b/src/material/mod.rs @@ -22,5 +22,5 @@ pub trait Material: std::fmt::Debug { fn properties(&self, point: Point2D) -> LightProperties; } -pub mod uniform; +mod uniform; pub use uniform::*;