blob: d22d67d9c9f999fb182063c38e473366f935edf0 (
plain)
1
2
3
4
5
6
7
|
function handleRequest(request, response) {
response.processAsync();
response.setHeader("Content-Type", "text/plain", false);
response.setHeader("X-Frame-Options", "DENY", false);
response.finish();
}
|