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