aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-09-14 22:00:34 +0200
committerHampusM <hampus@hampusmat.com>2023-09-14 22:01:32 +0200
commit88a6d31399bd14da6574471a8df4423e63ef340f (patch)
treea33ec9299f6cc632419dd2c8c837b9380689c851 /README.md
parent9bed6b4d2772fd020ea9eb6eaaba4ca014d96f94 (diff)
refactor!: remove blocking DI container prelude module
BREAKING CHANGE: The blocking DI container prelude module have been removed as it is no longer necessary seeing as the blocking DI container interface have been removed
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6a40ff1..8663d43 100644
--- a/README.md
+++ b/README.md
@@ -92,7 +92,7 @@ The goal of Syrette is to be a simple, useful, convenient and familiar DI & IoC
use std::error::Error;
use syrette::injectable;
-use syrette::di_container::blocking::prelude::*;
+use syrette::DIContainer;
use syrette::ptr::TransientPtr;
trait IWeapon