first commit

This commit is contained in:
alex
2025-06-22 11:32:11 +03:00
commit d3b2944cd8
18 changed files with 519 additions and 0 deletions

11
com/echo.lua Normal file
View File

@@ -0,0 +1,11 @@
--- #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