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