Skip to main content

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

1#![allow(unused_variables, dead_code, unused_imports)]
2
3//! The localhost plugin base URL (`http://localhost:<port>`).
4//! State held here; `Get` and `Set` expose atomic accessors.
5
6pub(crate) static URL:std::sync::OnceLock<String> = std::sync::OnceLock::new();
7
8pub mod Get;
9
10pub mod Set;