aboutsummaryrefslogtreecommitdiff
path: root/example/src/animals/dog.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-07-19 13:11:19 +0200
committerHampusM <hampus@hampusmat.com>2022-07-19 13:11:19 +0200
commit9ab2f550a25c3e4465afa025e4ffb1294b331bdb (patch)
treeaf7d8b999934a27b22782b0081b94c5ef0f3a5de /example/src/animals/dog.rs
parentff71b49f014613729237178f0d3ea374f7d72cd5 (diff)
docs: split example into multiple files
Diffstat (limited to 'example/src/animals/dog.rs')
-rw-r--r--example/src/animals/dog.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/example/src/animals/dog.rs b/example/src/animals/dog.rs
new file mode 100644
index 0000000..84959c0
--- /dev/null
+++ b/example/src/animals/dog.rs
@@ -0,0 +1,22 @@
+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!");
+ }
+}