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/cli.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/cli.rs')
| -rw-r--r-- | src/cli.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,8 +5,8 @@ use structopt::clap::{App, AppSettings, Arg, ArgMatches, Shell, SubCommand}; use crate::{config::Config, subs::run}; -pub struct CLI; -impl CLI { +pub struct Cli; +impl Cli { pub fn setup() -> ArgMatches<'static> { let matches = Self::cli().get_matches(); |