aboutsummaryrefslogtreecommitdiffstats
path: root/lua/hello.lua
blob: d8d877602840e22d8c5f68b2c70dc3231ba84592 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
rpc_resp = {}
rpc_resp["result"] = "KindOfNone"
rpc_resp["error"] = "Good"
rpc_resp["id"] = -1

function callback(rpc_req)

	rpc_resp["result"] = "o/"

	return rpc_resp
end