mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-28 03:58:10 +00:00
9 lines
150 B
Rust
9 lines
150 B
Rust
use mlua::prelude::*;
|
|
|
|
pub mod document;
|
|
|
|
pub fn module(lua: &Lua) -> LuaResult<LuaTable> {
|
|
let exports = lua.create_table()?;
|
|
|
|
Ok(exports)
|
|
}
|