mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 17:12:25 +00:00
11 lines
222 B
Lua
11 lines
222 B
Lua
local s = require("internal.session")
|
|
|
|
if not s.request.params.__fetched.data then
|
|
s.response.error = {
|
|
code = 123,
|
|
message = "params.data is missing"
|
|
}
|
|
return
|
|
end
|
|
|
|
s.response.send(s.request.params.__fetched) |