Files
GoSally/com/Utils/Echo.lua
2025-07-30 12:00:21 +03:00

12 lines
205 B
Lua

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