-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.lua
48 lines (40 loc) · 1.1 KB
/
index.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
-- うっかりグローバル変数を宣言したりするので確認用。
setmetatable(_G, {
__newindex = function(t, k, v)
-- sol.から始まるのはまあ大体意図的なものなので無視
if string.sub(k, 1, 4) ~= "sol." then
print(debug.traceback("WARNING: attempt to write to undeclared variable: " .. tostring(k), 2))
end
rawset(t, k, v)
end,
__index = function(t, k)
-- sol.から始まるのはまあ大体意図的なものなので無視
if string.sub(k, 1, 4) ~= "sol." then
print(debug.traceback("WARNING: attempt to read undeclared variable: " .. tostring(k), 2))
end
end,
})
local Plugin = require("plugin")
local Module = require("ukagaka_module.plugin")
local Request = Module.Request
local plugin = nil
local M = {}
function M.load(path)
print("load")
plugin = Plugin()
plugin:load(path)
return true
end
function M.request(str)
local req = Request.parse(str)
local res = plugin:request(req)
return res:tostring()
end
function M.unload()
plugin:unload()
return true
end
function M.debug()
return plugin
end
return M