Files
GoSally/com/echo.lua
2025-06-22 11:32:11 +03:00

11 lines
244 B
Lua

--- #description = "Echoes back the message provided in the 'msg' parameter."
if not Params.msg then
Result.status = "error"
Result.error = "Missing parameter: msg"
return
end
Result.status = "ok"
Result.answer = Params.msg
return