Files
GoSally/com/Utils/Echo.lua
2025-07-29 16:44:03 +03:00

8 lines
157 B
Lua

if not In.Params.msg or In.Params.msg == "" then
Out.Error = {
message = "there must be a msg parameter"
}
return
end
Out.Result.answer = In.Params.msg