diff options
author | HampusM <hampus@hampusmat.com> | 2022-10-09 12:05:24 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-10-09 17:03:01 +0200 |
commit | 5b0c6a52022e67a2d9cee251b3d08b9cb2b5f6cb (patch) | |
tree | c33f06eaab96ec43e477ea5ecd2af93e9d739097 /src/provider/async.rs | |
parent | 97c789e38bb8e61389a3808d241689e623144344 (diff) |
refactor!: reorganize DI containers
BREAKING CHANGE: DIContainer, AsyncDIContainer & the binding structs have been relocated
Diffstat (limited to 'src/provider/async.rs')
-rw-r--r-- | src/provider/async.rs | 2 |
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 |