sal/os/src/lib.rs
Mahmoud-Emad c4cdb8126c
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
feat: Add support for new OS package
- Add a new `sal-os` package containing OS interaction utilities.
- Update workspace members to include the new package.
- Add README and basic usage examples for the new package.
2025-06-21 15:45:43 +03:00

14 lines
229 B
Rust

pub mod download;
pub mod fs;
pub mod package;
pub mod platform;
// Re-export all public functions and types
pub use download::*;
pub use fs::*;
pub use package::*;
pub use platform::*;
// Rhai integration module
pub mod rhai;