aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/animals/dog.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound/animals/dog.rs')
-rw-r--r--examples/unbound/animals/dog.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/unbound/animals/dog.rs b/examples/unbound/animals/dog.rs
deleted file mode 100644
index 84959c0..0000000
--- a/examples/unbound/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!");
- }
-}