1
0
Fork 0
forked from wry/wry
wry/src/utils/xrd.rs
2022-04-14 19:52:11 +02:00

5 lines
105 B
Rust

pub const XRD: &str = "XDG_RUNTIME_DIR";
pub fn xrd() -> Option<String> {
std::env::var(XRD).ok()
}