slab/LIB/init.lua

9 lines
161 B
Lua
Raw Normal View History

2018-04-06 22:30:00 +00:00
local path = ...
if path:sub(-4) == "init" then
path = path:sub(1, -6)
if not (path) then
path = "."
end
end
return require(tostring(path) .. "/slab")