mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 12:32:25 +00:00
13 lines
246 B
Lua
13 lines
246 B
Lua
--- #description = "Echoes back the message."
|
|
--- #args
|
|
--- msg = the message
|
|
|
|
if not Params.msg then
|
|
Result.status = "error"
|
|
Result.error = "Missing parameter: msg"
|
|
return
|
|
end
|
|
|
|
Result.status = "ok"
|
|
Result.answer = Params.msg
|
|
return |