diff options
Diffstat (limited to 'example/src/animals/dog.rs')
-rw-r--r-- | example/src/animals/dog.rs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/example/src/animals/dog.rs b/example/src/animals/dog.rs deleted file mode 100644 index 84959c0..0000000 --- a/example/src/animals/dog.rs +++ /dev/null @@ -1,22 +0,0 @@ -use syrette::injectable; - -use crate::interfaces::dog::IDog; - -pub struct Dog {} - -#[injectable(IDog)] -impl Dog -{ - pub fn new() -> Self - { - Self {} - } -} - -impl IDog for Dog -{ - fn woof(&self) - { - println!("Woof!"); - } -} |