moving to module format, moved apps to subdirs
[nodejsws.git] / purls / main_head.js
1 function go(request, response, callback) {
2         console.log("in main_head.go");
3         response.write("<html><head><title>im a head</title></head><body>");
4         callback(request, response);
5         return;
6 }
7
8 exports.go = go;