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