aboutsummaryrefslogtreecommitdiff
path: root/example/src/animals/cat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'example/src/animals/cat.rs')
-rw-r--r--example/src/animals/cat.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/example/src/animals/cat.rs b/example/src/animals/cat.rs
new file mode 100644
index 0000000..153ad4b
--- /dev/null
+++ b/example/src/animals/cat.rs
@@ -0,0 +1,22 @@
+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!");
+ }
+}