13 lines
423 B
Rust
13 lines
423 B
Rust
/// Rhai support for OSIRIS
|
|
///
|
|
/// This module provides Rhai integration infrastructure for OSIRIS.
|
|
/// Object-specific Rhai support is located in each object's module (e.g., objects/note/rhai.rs).
|
|
|
|
pub mod instance;
|
|
|
|
pub use instance::OsirisInstance;
|
|
|
|
// Re-export registration functions from object modules
|
|
pub use crate::objects::note::rhai::register_note_api;
|
|
pub use crate::objects::event::rhai::register_event_api;
|