10
0
Fork 0
mirror of https://github.com/ZeusWPI/ZNS.git synced 2024-10-30 13:34:26 +01:00
zns/zns-daemon/src/config.rs

35 lines
858 B
Rust
Raw Normal View History

2024-06-08 00:41:43 +02:00
use std::{env, sync::OnceLock};
use dotenvy::dotenv;
static CONFIG: OnceLock<Config> = OnceLock::new();
pub struct Config {
pub zauth_url: String,
pub db_uri: String,
2024-07-14 22:00:26 +02:00
pub authoritative_zone: Vec<String>,
2024-06-08 00:41:43 +02:00
}
impl Config {
pub fn initialize() {
assert!(CONFIG.get().is_none());
Config::get();
}
pub fn get() -> &'static Config {
CONFIG.get_or_init(|| {
dotenv().ok();
Config {
db_uri: env::var("DATABASE_URL").expect("DATABASE_URL must be set"),
zauth_url: env::var("ZAUTH_URL").expect("ZAUTH_URL must be set"),
2024-07-14 22:00:26 +02:00
authoritative_zone: env::var("ZONE")
.expect("ZONE must be set")
.split(".")
.map(str::to_string)
.collect(),
2024-06-08 00:41:43 +02:00
}
})
}
}