summaryrefslogtreecommitdiff
path: root/schist_core/schist_traits/src
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2025-08-16 07:46:21 +0100
committerJoe Carstairs <me@joeac.net>2025-08-16 18:22:47 +0100
commitd082a30de6a0cbd1fbe2ab5a4316db0891004129 (patch)
treec097414625e1948116383406d894842fccc98227 /schist_core/schist_traits/src
parent9c0bc43bf0b83828d9bdf8005fcccbc33dcf4171 (diff)
refactor models and traits with pub use
Diffstat (limited to 'schist_core/schist_traits/src')
-rw-r--r--schist_core/schist_traits/src/lib.rs10
1 files changed, 7 insertions, 3 deletions
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;