use std::path::PathBuf;
#[allow(dead_code)]
pub(crate) const TESTING_DIR: &str = "./tmp/testing";
#[allow(dead_code)]
pub(crate) fn clean_test_dir() {
let _ = std::fs::remove_dir_all(crate::TESTING_DIR);
let mut path = PathBuf::from(crate::TESTING_DIR);
path.push("logs");
std::fs::create_dir_all(path).unwrap();
}