mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 14:57:32 +09:00
8 lines
212 B
Text
8 lines
212 B
Text
|
|
function handleRequest(request, response)
|
||
|
|
{
|
||
|
|
response.processAsync();
|
||
|
|
response.setHeader("Content-Type", "text/plain", false);
|
||
|
|
response.setHeader("X-Frame-Options", "DENY", false);
|
||
|
|
|
||
|
|
response.finish();
|
||
|
|
}
|