From d082a30de6a0cbd1fbe2ab5a4316db0891004129 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Sat, 16 Aug 2025 07:46:21 +0100 Subject: refactor models and traits with pub use --- schist_core/schist_traits/src/lib.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'schist_core/schist_traits/src') diff --git a/schist_core/schist_traits/src/lib.rs b/schist_core/schist_traits/src/lib.rs index ab5caca..9df2cdf 100644 --- a/schist_core/schist_traits/src/lib.rs +++ b/schist_core/schist_traits/src/lib.rs @@ -1,3 +1,7 @@ -pub mod dateable; -pub mod nowlike; -pub mod timeable; +mod dateable; +mod nowlike; +mod timeable; + +pub use dateable::Dateable; +pub use nowlike::Nowlike; +pub use timeable::Timeable; -- cgit v1.2.3