11 lines
208 B
Lua
11 lines
208 B
Lua
-- luacheck: globals live
|
|
local MODNAME = core.get_current_modname()
|
|
--local MODPATH = core.get_modpath(MODNAME)
|
|
|
|
local mod = {
|
|
MODNAME = MODNAME,
|
|
}
|
|
_G[MODNAME] = mod
|
|
|
|
live.load_module(MODNAME, "module")
|