From 18f60ba07893c79100c8c576a717059f3da33c84 Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 21 Jul 2022 19:50:42 +0200 Subject: docs: rename example folder to examples --- examples/basic/animals/dog.rs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/basic/animals/dog.rs (limited to 'examples/basic/animals/dog.rs') diff --git a/examples/basic/animals/dog.rs b/examples/basic/animals/dog.rs new file mode 100644 index 0000000..84959c0 --- /dev/null +++ b/examples/basic/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!"); + } +} -- cgit v1.2.3-18-g5258