diff options
author | HampusM <hampus@hampusmat.com> | 2023-10-04 12:51:06 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-10-04 12:52:22 +0200 |
commit | 0f2756536e8fc311119da2af5b4dcc33f41bec6e (patch) | |
tree | 0964efe0eaf855017c67fae52da8672a47becc65 /examples/async/interfaces/food.rs | |
parent | c936439bfac9e35958f685a52abb51d781e70a7c (diff) |
refactor!: remove factory & declare_default_factory macros
BREAKING CHANGE: The factory and the declare_default_factory macros have been removed. They are no longer needed to use factories
Diffstat (limited to 'examples/async/interfaces/food.rs')
-rw-r--r-- | examples/async/interfaces/food.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/examples/async/interfaces/food.rs b/examples/async/interfaces/food.rs index 9d88083..21ea568 100644 --- a/examples/async/interfaces/food.rs +++ b/examples/async/interfaces/food.rs @@ -1,4 +1,3 @@ -use syrette::factory; use syrette::ptr::TransientPtr; pub trait IFood: Send + Sync @@ -6,5 +5,4 @@ pub trait IFood: Send + Sync fn eat(&self); } -#[factory(threadsafe = true)] pub type IFoodFactory = dyn Fn() -> TransientPtr<dyn IFood> + Send + Sync; |