fix: use basic Engine for runner_osiris until osiris rhai module is available

This commit is contained in:
Timur Gordon
2025-10-27 14:18:55 +01:00
parent 228eb4ffe7
commit 268128f7fd

View File

@@ -34,9 +34,9 @@ struct Args {
/// - Sets up get_context() for participant-based access control
/// - Configures the Rhai engine for OSIRIS scripts
fn create_osis_engine() -> Engine {
// Use the engine with manager for dynamic context creation
osiris::rhai::create_osiris_engine_with_manager("redis://localhost:6379", 1)
.expect("Failed to create OSIRIS engine")
// Create a basic Rhai engine
// TODO: Add OSIRIS-specific registrations when available
Engine::new()
}
#[tokio::main]