pub const SUCCESS: char = '✓';
pub const ERROR: char = '✖';
pub const WARNING: char = '⚠';
pub const INFO: char = 'ℹ';
pub const PROGRESS_TEMPLATE: &str = "{spinner:.blue} (ETA. {eta}) [{wide_bar}] {pos:>5}/{len} ({per_sec:>12}) | {prefix:>3} {msg:>14.bold}";
pub const PROGRESS_CHARS: &str = "█▉▊▋▌▍▎▏ ";
pub const DEFAULT_SAVE_FILE: &str = ".rwalk.json";
pub const DEFAULT_STATUS_CODES: &str = "200-299,301-302,307,401,403,405,500";
pub const DEFAULT_FUZZ_KEY: &str = "$";
pub const DEFAULT_FOLLOW_REDIRECTS: usize = 5;
pub const DEFAULT_TIMEOUT: usize = 10;
pub const DEFAULT_METHOD: &str = "GET";
pub const DEFAULT_MODE: &str = "recursive";
pub const DEFAULT_DEPTH: usize = 1;
pub const DEFAULT_FILE_TYPE: &str = "txt";
pub const DEFAULT_CONFIG_PATH: &str = ".config/rwalk/config.toml";