aboutsummaryrefslogtreecommitdiff
path: root/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/errors.rs')
-rw-r--r--src/errors.rs9
1 files changed, 9 insertions, 0 deletions
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;