diff options
author | HampusM <hampus@hampusmat.com> | 2022-08-02 11:15:10 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-08-02 11:15:10 +0200 |
commit | 163cd3cedd398f5676edbcb3249dd958d3e97aca (patch) | |
tree | 84684e1a79f41e143f297be29c5da252742ac274 | |
parent | 980bedd54ee4f0d0da3902fc22cfaebdfd3ff1b8 (diff) |
refactor: hide AnyFactory from docs
-rw-r--r-- | src/interfaces/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/mod.rs b/src/interfaces/mod.rs index eef7190..0ea8ab5 100644 --- a/src/interfaces/mod.rs +++ b/src/interfaces/mod.rs @@ -1,7 +1,9 @@ //! Various useful interfaces. -pub mod any_factory; pub mod injectable; +#[doc(hidden)] +pub mod any_factory; + #[cfg(feature = "factory")] pub mod factory; |