From ca86952c1486b7f2313fef62e6cacf36e248efd2 Mon Sep 17 00:00:00 2001 From: HampusM Date: Sat, 13 Jul 2024 16:26:28 +0200 Subject: refactor: move & rename all mod.rs files --- src/errors.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/errors.rs (limited to 'src/errors.rs') diff --git a/src/errors.rs b/src/errors.rs new file mode 100644 index 0000000..7eb10bd --- /dev/null +++ b/src/errors.rs @@ -0,0 +1,9 @@ +//! Error types for various components of the library. + +pub mod di_container; +pub mod injectable; +pub mod ptr; + +#[cfg(feature = "async")] +#[cfg_attr(doc_cfg, doc(cfg(feature = "async")))] +pub mod async_di_container; -- cgit v1.2.3-18-g5258