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/main.rs | |
| parent | perf(builtins): help commands to constants (diff) | |
| download | archived-whirl-34101185feeebca00b4f142a9b13ff0d0e28531a.tar.xz archived-whirl-34101185feeebca00b4f142a9b13ff0d0e28531a.zip | |
refactor(global): whirl_config modulized
The config module has now become it's own crate.
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 0ec0796..e48fbbb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,7 +3,8 @@ use std::error::Error; -use whirl::{cli::Cli, config::Config, utils::log::calculate_log_level}; +use whirl::{cli::Cli, utils::log::calculate_log_level}; +use whirl_config::Config; #[tokio::main] async fn main() -> Result<(), Box<dyn Error>> { |