Skip to main content

zoi_lua/
lib.rs

1//! Lua scripting and API integration for Zoi.
2//!
3//! This crate provides the Lua engine and the core APIs exposed to Zoi
4//! package definitions (`.pkg.lua`) and plugins. It handles the execution
5//! of Lua scripts and provides a bridge between Lua and Zoi's Rust core.
6
7/// Core Lua API implementations.
8pub mod api;
9/// High-level Lua environment setup and execution functions.
10pub mod functions;
11/// Lua script parser and validator.
12pub mod parser;