blob: 4c6dd6d5b91c2393a71a1b3a94160e9cd5a1a1da (
plain)
1
2
3
4
5
6
7
8
|
"use strict";
function handleRequest(request, response) {
response.processAsync();
response.setHeader("Content-Type", "text/html");
response.write("<!doctype html>Loading... ");
// We don't block on this, so it's fine to never finish the response.
}
|