1//! Lua plugin runtime implementation.
2//!
3//! This module provides a Lua scripting runtime using mlua (Lua 5.4).
4//! It follows patterns from Yazi's plugin system with two-stage initialization.
56mod bindings;
7mod isolate;
8mod runtime;
910pub use runtime::LuaRuntime;