aboutsummaryrefslogtreecommitdiff
path: root/examples/async-factory
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-09-16 15:35:56 +0200
committerHampusM <hampus@hampusmat.com>2023-09-16 15:35:56 +0200
commit8b4cb39890016394122a799929aee6662980025b (patch)
tree5a984c4d652669ab401054c091f876faaf84bea8 /examples/async-factory
parentda7426ccb4aae87b322a884c31c6e5136c40927f (diff)
refactor!: remove async DI container prelude module
BREAKING CHANGE: The async DI container prelude module have been removed as it is no longer necessary seeing as the async DI container interface have been removed
Diffstat (limited to 'examples/async-factory')
-rw-r--r--examples/async-factory/main.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/async-factory/main.rs b/examples/async-factory/main.rs
index a441842..f0365a1 100644
--- a/examples/async-factory/main.rs
+++ b/examples/async-factory/main.rs
@@ -5,10 +5,9 @@
use std::time::Duration;
use anyhow::Result;
-use syrette::di_container::asynchronous::prelude::*;
use syrette::future::BoxFuture;
use syrette::ptr::TransientPtr;
-use syrette::{declare_default_factory, factory};
+use syrette::{declare_default_factory, factory, AsyncDIContainer};
use tokio::time::sleep;
trait IFoo: Send + Sync