aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-04 19:23:25 +0000
committerFuwn <[email protected]>2021-05-04 19:23:25 +0000
commitd0f69a96dfa0a1da65b64d1ee79783d95d145675 (patch)
treee459ca4f22e27b8a45a4493066d38a345645361b /src/main.rs
parentrevert(deps): remove dev-dependencies once again (diff)
downloadwhirl-d0f69a96dfa0a1da65b64d1ee79783d95d145675.tar.xz
whirl-d0f69a96dfa0a1da65b64d1ee79783d95d145675.zip
style(global): fix clippy complaints
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 39212e2..2171243 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -3,19 +3,19 @@
use std::error::Error;
-use whirl::cli::CLI;
+use whirl::cli::Cli;
#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
// Environment
- let matches = CLI::setup();
+ let matches = Cli::setup();
// Logging
dotenv::dotenv().ok();
pretty_env_logger::init();
// Execution
- CLI::execute(matches).await;
+ Cli::execute(matches).await;
Ok(())
}