You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
384 B
20 lines
384 B
mod http;
|
|
mod logging;
|
|
mod math;
|
|
mod os_ext;
|
|
mod sqlite;
|
|
mod table;
|
|
mod task;
|
|
pub(crate) mod utils;
|
|
|
|
pub(crate) fn install(lua: &mlua::Lua) -> mlua::Result<()> {
|
|
math::install(lua)?;
|
|
table::install(lua)?;
|
|
utils::install(lua)?;
|
|
os_ext::install(lua)?;
|
|
logging::install(lua)?;
|
|
sqlite::install(lua)?;
|
|
http::install(lua)?;
|
|
task::install(lua)?;
|
|
Ok(())
|
|
}
|
|
|