mirror of
https://github.com/lune-org/lune.git
synced 2025-05-04 10:43:57 +01:00
7 lines
177 B
Rust
7 lines
177 B
Rust
use mlua::prelude::*;
|
|
|
|
use super::context::*;
|
|
|
|
pub(super) fn require(lua: Lua, ctx: &RequireContext, name: &str) -> LuaResult<LuaMultiValue> {
|
|
ctx.load_library(lua, name)
|
|
}
|