remove vendor

This commit is contained in:
2025-08-04 16:38:05 +03:00
parent 7b9bdcf768
commit 396352ba15
2116 changed files with 3 additions and 6677565 deletions

View File

@@ -1,22 +0,0 @@
if In.Params and In.Params.about then
Out.Result = {
description = "Echo of the message",
params = {
msg = "just message"
}
}
return
end
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

View File

@@ -1,8 +0,0 @@
if In.Params and In.Params.about then
Out.Result = {
description = "Just ping"
}
return
end
Out.Result.answer = "pong"