diff options
| author | Fuwn <[email protected]> | 2021-05-04 19:23:25 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-04 19:23:25 +0000 |
| commit | d0f69a96dfa0a1da65b64d1ee79783d95d145675 (patch) | |
| tree | e459ca4f22e27b8a45a4493066d38a345645361b /src/main.rs | |
| parent | revert(deps): remove dev-dependencies once again (diff) | |
| download | whirl-d0f69a96dfa0a1da65b64d1ee79783d95d145675.tar.xz whirl-d0f69a96dfa0a1da65b64d1ee79783d95d145675.zip | |
style(global): fix clippy complaints
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 6 |
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(()) } |