You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tourmaline/src/utils.rs

9 lines
242 B
Rust

use std::path::PathBuf;
const CONFIG_DIR: &str = "/etc";
lazy_static::lazy_static! {
pub static ref CFG_PATH: PathBuf = PathBuf::from(CONFIG_DIR).join("tourmaline");
pub static ref SCRIPT_PATH: PathBuf = CFG_PATH.join("scripts");
}