aboutsummaryrefslogtreecommitdiff
path: root/examples/async/bootstrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/async/bootstrap.rs')
-rw-r--r--examples/async/bootstrap.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/examples/async/bootstrap.rs b/examples/async/bootstrap.rs
index 6fbe831..07e1bf8 100644
--- a/examples/async/bootstrap.rs
+++ b/examples/async/bootstrap.rs
@@ -1,5 +1,5 @@
use syrette::ptr::TransientPtr;
-use syrette::{declare_default_factory, AsyncDIContainer};
+use syrette::AsyncDIContainer;
use crate::animals::cat::Cat;
use crate::animals::dog::Dog;
@@ -10,8 +10,6 @@ use crate::interfaces::dog::IDog;
use crate::interfaces::food::{IFood, IFoodFactory};
use crate::interfaces::human::IHuman;
-declare_default_factory!(dyn ICat, threadsafe = true);
-
pub async fn bootstrap() -> Result<AsyncDIContainer, anyhow::Error>
{
let mut di_container = AsyncDIContainer::new();