aboutsummaryrefslogtreecommitdiff
path: root/examples/basic/animals/cat.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-07-21 19:50:42 +0200
committerHampusM <hampus@hampusmat.com>2022-07-21 19:50:42 +0200
commit18f60ba07893c79100c8c576a717059f3da33c84 (patch)
treeccfe5929b02c0c5a7db5397ba9a1f171294e6d63 /examples/basic/animals/cat.rs
parent2d1a6b2d432408d74eb57e0bda3f7434617e1070 (diff)
docs: rename example folder to examples
Diffstat (limited to 'examples/basic/animals/cat.rs')
-rw-r--r--examples/basic/animals/cat.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/examples/basic/animals/cat.rs b/examples/basic/animals/cat.rs
new file mode 100644
index 0000000..153ad4b
--- /dev/null
+++ b/examples/basic/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!");
+ }
+}