1
0
Fork 0
forked from wry/wry
wry/utils/src/xrd.rs

5 lines
105 B
Rust

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