diff options
author | HampusM <hampus@hampusmat.com> | 2022-10-23 18:12:23 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-10-23 18:12:23 +0200 |
commit | 9e01cdf341a7866180b3a63d745f3b2d7578d28a (patch) | |
tree | 0c036b7b4a68e44b6eb2221bf7beb3c34fe9c1c8 /examples/async/main.rs | |
parent | 740ef47d49e02ae2f2184f4c347d8eba8aee38fd (diff) |
refactor!: reduce DI container coupling
BREAKING CHANGE: You now have to import the DI containers's interfaces to use the DI containers's methods
Diffstat (limited to 'examples/async/main.rs')
-rw-r--r-- | examples/async/main.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/async/main.rs b/examples/async/main.rs index 03e36e1..d051b94 100644 --- a/examples/async/main.rs +++ b/examples/async/main.rs @@ -2,19 +2,19 @@ #![deny(clippy::pedantic)] #![allow(clippy::module_name_repetitions)] -use anyhow::Result; -use tokio::spawn; - mod animals; mod bootstrap; mod food; mod interfaces; -use bootstrap::bootstrap; -use interfaces::dog::IDog; -use interfaces::human::IHuman; +use anyhow::Result; +use syrette::di_container::asynchronous::prelude::*; +use tokio::spawn; +use crate::bootstrap::bootstrap; +use crate::interfaces::dog::IDog; use crate::interfaces::food::IFoodFactory; +use crate::interfaces::human::IHuman; #[tokio::main] async fn main() -> Result<()> |