refactor: rename module console->mode

This commit is contained in:
Erica Marigold 2025-05-02 08:46:36 +01:00
parent 1df32ee4a4
commit f1cc4be4b1
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@ use color_eyre::{Result, eyre::eyre};
use tracing_error::ErrorLayer; use tracing_error::ErrorLayer;
use tracing_subscriber::{EnvFilter, fmt, prelude::*, util::TryInitError}; use tracing_subscriber::{EnvFilter, fmt, prelude::*, util::TryInitError};
use crate::console::ProcessMode; use crate::mode::ProcessMode;
lazy_static::lazy_static! { lazy_static::lazy_static! {
pub static ref LOG_ENV: String = format!("{}_LOG", env!("CARGO_PKG_NAME").to_uppercase()); pub static ref LOG_ENV: String = format!("{}_LOG", env!("CARGO_PKG_NAME").to_uppercase());

View file

@ -1,11 +1,11 @@
use app::App; use app::App;
use color_eyre::eyre; use color_eyre::eyre;
use console::ProcessMode; use mode::ProcessMode;
use eframe::NativeOptions; use eframe::NativeOptions;
use egui::ViewportBuilder; use egui::ViewportBuilder;
mod app; mod app;
pub(crate) mod console; pub(crate) mod mode;
mod errors; mod errors;
mod logging; mod logging;