cosmopolitan/tool/net/demo/printpayload.lua

13 lines
282 B
Lua
Raw Normal View History

local function main()
if GetMethod() ~= 'POST' and GetMethod() ~= 'PUT' then
ServeError(405)
SetHeader('Allow', 'POST, PUT')
return
end
SetStatus(200)
SetHeader("Content-Type", GetHeader("Content-Type") or "text/plain")
2022-10-06 23:27:23 +00:00
Write(GetBody())
end
main()