use modules::Module;
use toml::Table;
pub struct LuaModule {
}
impl LuaModule {
pub fn new (_: &Table) -> Box<Module> {
Box::new(LuaModule {})
impl Module for LuaModule {}