diff options
author | HampusM <hampus@hampusmat.com> | 2022-07-24 16:23:56 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-07-24 16:23:56 +0200 |
commit | dd10309ae99311af10dd519257bed5fdf2b51425 (patch) | |
tree | 499812cf97b0c02035fdd6b591dbe02bc5507aa7 /src | |
parent | 5335cdad99a6d566ea6e83f97012c7954ba93c45 (diff) |
refactor: hide castable factory from docs
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -11,12 +11,13 @@ pub mod errors; pub mod interfaces; pub mod ptr; -#[cfg(feature = "factory")] -pub mod castable_factory; - pub use di_container::*; pub use syrette_macros::*; +#[cfg(feature = "factory")] +#[doc(hidden)] +pub mod castable_factory; + #[doc(hidden)] pub mod libs; |