diff options
Diffstat (limited to 'examples/unbound/main.rs')
-rw-r--r-- | examples/unbound/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/unbound/main.rs b/examples/unbound/main.rs index e9a8feb..f8dddbb 100644 --- a/examples/unbound/main.rs +++ b/examples/unbound/main.rs @@ -2,7 +2,7 @@ #![deny(clippy::pedantic)] #![allow(clippy::module_name_repetitions)] -use std::error::Error; +use anyhow::Result; mod animal_store; mod animals; @@ -13,7 +13,7 @@ use bootstrap::bootstrap; use interfaces::dog::IDog; use interfaces::human::IHuman; -fn main() -> Result<(), Box<dyn Error>> +fn main() -> Result<()> { println!("Hello, world!"); |