Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/FileSystem/
mod.rs

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