autosway 0.4.1

Automation program
Documentation
use super::*;

pub fn create_module(lua: &Lua, name: &str, table: LuaTable) -> Result<(), LuaError> {
    lua.load_from_function::<LuaTable>(
        name,
        lua.create_function(move |_, _: ()| Ok(table.clone()))?,
    )?;
    Ok(())
}

mod os;
pub use os::*;

mod fs;
pub use fs::*;

mod i3;
pub use i3::*;

mod util;
pub use util::*;

mod desktop;
pub use desktop::*;

mod multimedia;
pub use multimedia::*;

mod net;
pub use net::*;

mod extra;
pub use extra::*;