1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2025-02-06 20:12:48 +01:00
2018-09-19 15:08:49 +02:00

10 lines
221 B
Lua

local handle = function(p)
local hstr = p:match("^%a+/")
if hstr == "fs/" then
--print("require module")
require("fs.fsh")(p:gsub(hstr,"",1))
else
fail("Resource not found for request "..p)
end
end
return handle