mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
12 lines
282 B
Lua
12 lines
282 B
Lua
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")
|
|
Write(GetBody())
|
|
end
|
|
|
|
main()
|