feat: Add support for new OS package
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
- 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.
This commit is contained in:
13
os/src/lib.rs
Normal file
13
os/src/lib.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
Reference in New Issue
Block a user