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.
xplr/src/default_config.rs

9 lines
238 B
Rust

pub const DEFAULT_CONFIG_YAML: &str = include_str!("config.yml");
use crate::config::Config;
use lazy_static::lazy_static;
lazy_static! {
pub static ref DEFAULT_CONFIG: Config = serde_yaml::from_str(DEFAULT_CONFIG_YAML).unwrap();
}