diff --git a/src/bin/runner_osiris.rs b/src/bin/runner_osiris.rs index 567fbb2..12b0ca8 100644 --- a/src/bin/runner_osiris.rs +++ b/src/bin/runner_osiris.rs @@ -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]