mirror of
https://github.com/Steffo99/micronfig.git
synced 2024-11-22 08:04:20 +00:00
8 lines
187 B
Rust
8 lines
187 B
Rust
micronfig::config! {
|
|
GARASAUTO: String > std::path::PathBuf,
|
|
}
|
|
|
|
fn main() {
|
|
std::env::set_var("GARASAUTO", "./garas");
|
|
assert_eq!(GARASAUTO(), &std::path::PathBuf::from("./garas"));
|
|
}
|