aboutsummaryrefslogtreecommitdiff
path: root/src/errors/mod.rs
blob: a1eb551cbde0e363f37d226725552c50f1d894dc (plain)
1
2
3
4
5
6
7
8
9
10
//! Error types for various components of the library.

use feature_macros::feature_specific;

pub mod di_container;
pub mod injectable;
pub mod ptr;

#[feature_specific("async")]
pub mod async_di_container;