Mountain/IPC/WindServiceHandlers/Utilities/mod.rs
1#![allow(non_snake_case, unused_variables, dead_code, unused_imports)]
2
3//! Utilities for Wind handlers, grouped by purpose. Sub-module helpers
4//! (`hex_digit`, `percent_decode`, `normalize_uri_path`, etc.) stay co-
5//! located with their single public entry point - splitting by strict one-
6//! fn-per-file would fragment tightly coupled internals for no readability
7//! gain.
8//!
9//! No `pub use`. External callers must spell
10//! `Utilities::<Domain>::<Function>`.
11
12pub mod ApplicationRoot;
13pub mod ChannelPriority;
14pub mod JsonValueHelpers;
15pub mod MetadataEncoding;
16pub mod PathExtraction;
17pub mod RecentlyOpened;
18pub mod UserdataDir;