From 8aeb7ad439b67228a0abc46b259967e8c91f8a97 Mon Sep 17 00:00:00 2001 From: HampusM Date: Thu, 17 Aug 2023 22:04:17 +0200 Subject: docs: remove the 'unbound' example This was not at all a useful example --- examples/unbound/animals/dog.rs | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 examples/unbound/animals/dog.rs (limited to 'examples/unbound/animals/dog.rs') diff --git a/examples/unbound/animals/dog.rs b/examples/unbound/animals/dog.rs deleted file mode 100644 index 84959c0..0000000 --- a/examples/unbound/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!"); - } -} -- cgit v1.2.3-18-g5258