feat: utils folder

This commit is contained in:
2022-12-15 23:58:31 +01:00
parent 00000200d1
commit 0000021036
7 changed files with 7 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
use std::env;
use std::fs;
pub mod helpers;
pub mod utils;
pub const ANSI_ITALIC: &str = "\x1b[3m";
pub const ANSI_BOLD: &str = "\x1b[1m";

1
src/utils/constants.rs Normal file
View File

@@ -0,0 +1 @@
pub const VOWELS: &str = "aeiou";

2
src/utils/mod.rs Normal file
View File

@@ -0,0 +1,2 @@
pub mod constants;
pub mod input_parsers;