aboutsummaryrefslogtreecommitdiff
path: root/src/provider
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-10-09 12:05:24 +0200
committerHampusM <hampus@hampusmat.com>2022-10-09 17:03:01 +0200
commit5b0c6a52022e67a2d9cee251b3d08b9cb2b5f6cb (patch)
treec33f06eaab96ec43e477ea5ecd2af93e9d739097 /src/provider
parent97c789e38bb8e61389a3808d241689e623144344 (diff)
refactor!: reorganize DI containers
BREAKING CHANGE: DIContainer, AsyncDIContainer & the binding structs have been relocated
Diffstat (limited to 'src/provider')
-rw-r--r--src/provider/async.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/provider/async.rs b/src/provider/async.rs
index 9925079..ec05b06 100644
--- a/src/provider/async.rs
+++ b/src/provider/async.rs
@@ -3,10 +3,10 @@ use std::sync::Arc;
use async_trait::async_trait;
-use crate::async_di_container::AsyncDIContainer;
use crate::errors::injectable::InjectableError;
use crate::interfaces::async_injectable::AsyncInjectable;
use crate::ptr::{ThreadsafeSingletonPtr, TransientPtr};
+use crate::AsyncDIContainer;
#[derive(strum_macros::Display, Debug)]
pub enum AsyncProvidable