mirror of
https://github.com/notwa/mm
synced 2024-11-04 22:59:03 -08:00
11 lines
252 B
Lua
11 lines
252 B
Lua
if _require then return end
|
|
_require = require
|
|
|
|
package.path = package.path..';./lib/?.lua'
|
|
|
|
function depend(path)
|
|
if package and package.loaded and package.loaded[path] then
|
|
package.loaded[path] = nil
|
|
end
|
|
return _require(path)
|
|
end
|