aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-26 22:13:40 +0000
committerFuwn <[email protected]>2021-05-26 22:13:40 +0000
commit5e12bd2b311a3f6432d99bdac195d118bdb7e8fb (patch)
tree4d7fc495ca09d9c54aa3e1f7c0e6f9bf32b82785
parentrefactor(whirl): move cli subcommand executor to cli struct (diff)
downloadwhirl-5e12bd2b311a3f6432d99bdac195d118bdb7e8fb.tar.xz
whirl-5e12bd2b311a3f6432d99bdac195d118bdb7e8fb.zip
style(whirl): don't use single used trait
-rw-r--r--crates/whirl/src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/crates/whirl/src/main.rs b/crates/whirl/src/main.rs
index 074ca69..04c516c 100644
--- a/crates/whirl/src/main.rs
+++ b/crates/whirl/src/main.rs
@@ -1,9 +1,7 @@
// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
-use std::error::Error;
-
use whirl::whirl::Whirl;
#[tokio::main]
-async fn main() -> Result<(), Box<dyn Error>> { Whirl::splash().await }
+async fn main() -> Result<(), Box<dyn std::error::Error>> { Whirl::splash().await }