diff options
| author | Joe Carstairs <me@joeac.net> | 2025-08-16 07:46:21 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2025-08-16 18:22:47 +0100 |
| commit | d082a30de6a0cbd1fbe2ab5a4316db0891004129 (patch) | |
| tree | c097414625e1948116383406d894842fccc98227 /schist_core/schist_traits/src | |
| parent | 9c0bc43bf0b83828d9bdf8005fcccbc33dcf4171 (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.rs | 10 |
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; |
