Skip to main content

Mountain/IPC/WindServiceHandlers/Utilities/ApplicationRoot/
mod.rs

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;