mirror of
https://github.com/Steffo99/micronfig.git
synced 2024-11-26 01:54:18 +00:00
9 lines
143 B
Rust
9 lines
143 B
Rust
|
micronfig::config! {
|
||
|
GARASAUTO: String,
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
std::env::set_var("GARASAUTO", "sagramoto");
|
||
|
assert_eq!(GARASAUTO(), "sagramoto");
|
||
|
}
|