aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lua/hello.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/hello.lua b/lua/hello.lua
new file mode 100644
index 0000000..d8d8776
--- /dev/null
+++ b/lua/hello.lua
@@ -0,0 +1,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 \ No newline at end of file