mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
12 lines
331 B
Text
12 lines
331 B
Text
|
|
|
||
|
|
function handleRequest(request, response)
|
||
|
|
{
|
||
|
|
// avoid confusing cache behaviors
|
||
|
|
response.setHeader("Cache-Control", "no-cache", false);
|
||
|
|
response.setHeader("Content-Type", "text/plain", false);
|
||
|
|
response.setHeader("Access-Control-Allow-Origin", "*", false);
|
||
|
|
|
||
|
|
// echo method
|
||
|
|
response.write(request.method);
|
||
|
|
}
|
||
|
|
|