mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 08:32:24 +00:00
8 lines
157 B
Lua
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 |