mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-05-04 10:03:48 +01: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)
|
|
}
|