refactor: rename module console->mode
This commit is contained in:
parent
1df32ee4a4
commit
f1cc4be4b1
3 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ use color_eyre::{Result, eyre::eyre};
|
|||
use tracing_error::ErrorLayer;
|
||||
use tracing_subscriber::{EnvFilter, fmt, prelude::*, util::TryInitError};
|
||||
|
||||
use crate::console::ProcessMode;
|
||||
use crate::mode::ProcessMode;
|
||||
|
||||
lazy_static::lazy_static! {
|
||||
pub static ref LOG_ENV: String = format!("{}_LOG", env!("CARGO_PKG_NAME").to_uppercase());
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
use app::App;
|
||||
use color_eyre::eyre;
|
||||
use console::ProcessMode;
|
||||
use mode::ProcessMode;
|
||||
use eframe::NativeOptions;
|
||||
use egui::ViewportBuilder;
|
||||
|
||||
mod app;
|
||||
pub(crate) mod console;
|
||||
pub(crate) mod mode;
|
||||
mod errors;
|
||||
mod logging;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue