mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 15:12:26 +00:00
Enhance server functionality: add versioning support, implement command handling improvements, and introduce new Lua scripts for command execution
This commit is contained in:
@@ -4,7 +4,4 @@
|
||||
Params = {}
|
||||
|
||||
---@type AnyTable
|
||||
Result = {}
|
||||
|
||||
---@type AnyTable
|
||||
Me = {}
|
||||
Result = {}
|
||||
5
com/_prepare.lua
Normal file
5
com/_prepare.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
print = function() end
|
||||
io.write = function(...) end
|
||||
io.stdout = function() return nil end
|
||||
io.stderr = function() return nil end
|
||||
io.read = function(...) return nil end
|
||||
@@ -1,4 +1,4 @@
|
||||
--- #description = "Echoes back the message provided in the 'msg' parameter."
|
||||
--- #description = "Echoes back the message provided in the 'msg' parameter. b1"
|
||||
|
||||
if not Params.msg then
|
||||
Result.status = "error"
|
||||
Reference in New Issue
Block a user