mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
6 lines
190 B
Text
6 lines
190 B
Text
|
|
function handleRequest(request, response)
|
||
|
|
{
|
||
|
|
response.setStatusLine("1.0", 200, "OK");
|
||
|
|
response.setHeader("Content-Type", "text/plain; charset=utf-8", false);
|
||
|
|
response.write("Ciao");
|
||
|
|
}
|