diff options
Diffstat (limited to '')
-rw-r--r-- | lazy/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lazy/src/lib.rs b/lazy/src/lib.rs index 3827746c..c01b439b 100644 --- a/lazy/src/lib.rs +++ b/lazy/src/lib.rs @@ -17,9 +17,11 @@ clippy::type_complexity )] #![cfg_attr(docsrs, feature(doc_cfg))] +pub mod cached; pub mod component; pub mod responsive; +pub use cached::Cached; pub use component::Component; pub use responsive::Responsive; |