1//! `/Static/Application/` → Sky Target real path. 2//! State held here; `Get` and `Set` expose atomic accessors. 3 4pub(crate) static ROOT:std::sync::OnceLock<String> = std::sync::OnceLock::new(); 5 6pub mod Get; 7 8pub mod Set;