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 --- example/src/main.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 example/src/main.rs (limited to 'example/src/main.rs') diff --git a/example/src/main.rs b/example/src/main.rs deleted file mode 100644 index 956b79e..0000000 --- a/example/src/main.rs +++ /dev/null @@ -1,30 +0,0 @@ -#![deny(clippy::all)] -#![deny(clippy::pedantic)] -#![allow(clippy::module_name_repetitions)] - -use syrette::errors::di_container::DIContainerError; - -mod animals; -mod bootstrap; -mod interfaces; - -use bootstrap::bootstrap; -use interfaces::dog::IDog; -use interfaces::human::IHuman; - -fn main() -> error_stack::Result<(), DIContainerError> -{ - println!("Hello, world!"); - - let di_container = bootstrap(); - - let dog = di_container.get::()?; - - dog.woof(); - - let human = di_container.get::()?; - - human.make_pets_make_sounds(); - - Ok(()) -} -- cgit v1.2.3-18-g5258