Files
GoSally/com/Utils/Ping.lua
Alexey 6d2bf5cdd2 add "about" to scripts
you can get a description if you send a request where in params there is a field about with any content
2025-07-30 18:32:38 +03:00

8 lines
129 B
Lua

if In.Params and In.Params.about then
Out.Result = {
description = "Just ping"
}
return
end
Out.Result.answer = "pong"