aboutsummaryrefslogtreecommitdiff
path: root/examples/unbound/animals/cat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/unbound/animals/cat.rs')
-rw-r--r--examples/unbound/animals/cat.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/examples/unbound/animals/cat.rs b/examples/unbound/animals/cat.rs
deleted file mode 100644
index 153ad4b..0000000
--- a/examples/unbound/animals/cat.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-use syrette::injectable;
-
-use crate::interfaces::cat::ICat;
-
-pub struct Cat {}
-
-#[injectable(ICat)]
-impl Cat
-{
- pub fn new() -> Self
- {
- Self {}
- }
-}
-
-impl ICat for Cat
-{
- fn meow(&self)
- {
- println!("Meow!");
- }
-}