Skip to main content

Mountain/IPC/WindServiceHandlers/FileSystem/
mod.rs

1#![allow(non_snake_case, unused_variables, dead_code, unused_imports)]
2
3//! FileSystem atoms - two tiers:
4//! - `Managed`: legacy handlers that route through
5//!   `FileSystemReader`/`FileSystemWriter` traits on the Application RunTime.
6//!   Currently only the binary read/write variants are wired into dispatch; the
7//!   rest are preserved for future reuse.
8//! - `Native`: URI-aware direct `tokio::fs` handlers that Wind/Sky call via
9//!   `file:*` channels.
10//!
11//! No `pub use` - every call site qualifies through `Managed::<Atom>` or
12//! `Native::<Atom>`.
13
14pub mod Managed;
15pub mod Native;