diff --git a/src/lune/util/formatting.rs b/src/lune/util/formatting.rs deleted file mode 100644 index ca2573c8..00000000 --- a/src/lune/util/formatting.rs +++ /dev/null @@ -1,477 +0,0 @@ -use std::fmt::Write; - -use console::{colors_enabled, set_colors_enabled, style, Style}; -use mlua::prelude::*; -use once_cell::sync::Lazy; - -const MAX_FORMAT_DEPTH: usize = 4; - -const INDENT: &str = " "; - -pub const STYLE_RESET_STR: &str = "\x1b[0m"; - -// Colors -pub static COLOR_BLACK: Lazy