diff options
| author | Fuwn <[email protected]> | 2021-05-17 09:43:26 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-17 09:43:26 +0000 |
| commit | 34101185feeebca00b4f142a9b13ff0d0e28531a (patch) | |
| tree | b341ddaed17fe05d001536d3d5ec03f8941c236d /src/cli.rs | |
| parent | perf(builtins): help commands to constants (diff) | |
| download | whirl-34101185feeebca00b4f142a9b13ff0d0e28531a.tar.xz whirl-34101185feeebca00b4f142a9b13ff0d0e28531a.zip | |
refactor(global): whirl_config modulized
The config module has now become it's own crate.
Diffstat (limited to 'src/cli.rs')
| -rw-r--r-- | src/cli.rs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2,8 +2,9 @@ // SPDX-License-Identifier: GPL-3.0-only use structopt::clap::{App, AppSettings, Arg, ArgMatches, Shell, SubCommand}; +use whirl_config::Config; -use crate::{config::Config, subs::run}; +use crate::subs::run; pub struct Cli; impl Cli { |