modularize

This commit is contained in:
raf 2024-08-03 20:42:48 +03:00
commit 29e4ccc806
Signed by: NotAShelf
GPG key ID: AF26552424E53993
6 changed files with 223 additions and 203 deletions

6
src/colors.rs Normal file
View file

@ -0,0 +1,6 @@
pub const RESET: &str = "\x1b[0m";
pub const BLUE: &str = "\x1b[34m";
pub const CYAN: &str = "\x1b[36m";
pub const GREEN: &str = "\x1b[32m";
pub const YELLOW: &str = "\x1b[33m";
pub const RED: &str = "\x1b[31m";