mabel-hex/src/outbound/config.rs

13 lines
251 B
Rust
Raw Normal View History

2025-02-06 21:11:43 +01:00
#[derive(Clone)]
pub struct AppConfig {
pub admin_host: String,
}
impl AppConfig {
pub fn from_env() -> Self {
Self {
admin_host: std::env::var("MABEL_ADMIN_HOST").expect("MABEL_ADMIN_HOST must be set"),
}
}
}