Files
orchid/src/systems/directfs/mod.rs
Lawrence Bethlenfalvy ba0b155ebd Removed foreign macros
Converted the function integration to use template
metaprogramming instead of macros.
2023-09-22 23:25:26 +01:00

7 lines
171 B
Rust

//! A rudimentary system exposing methods for Orchid to interact with the file
//! system. All paths are strings.
mod commands;
mod osstring;
pub use commands::DirectFS;