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/utils | |
| 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/utils')
| -rw-r--r-- | src/utils/log.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/log.rs b/src/utils/log.rs index e4a45e9..39ceca0 100644 --- a/src/utils/log.rs +++ b/src/utils/log.rs @@ -1,7 +1,7 @@ // Copyleft (ɔ) 2021-2021 The Whirlsplash Collective // SPDX-License-Identifier: GPL-3.0-only -use crate::config::Config; +use whirl_config::Config; pub fn calculate_log_level() -> String { let mut level; |