Light refactor

This commit is contained in:
John Crepezzi 2011-11-18 10:49:38 -05:00
parent 7756e38595
commit f22f347d43
1 changed files with 5 additions and 4 deletions

View File

@ -80,13 +80,14 @@ http.createServer(function(request, response) {
var incoming = url.parse(request.url, false);
var handler = null;
if (incoming.pathname.indexOf('/documents') === 0) {
var handler = new DocumentHandler();
handler.handle(request, response);
handler = new DocumentHandler();
}
else {
var handler = new StaticHandler('./static');
handler.handle(request, response);
handler = new StaticHandler('./static');
}
handler.handle(request, response);
}).listen(7777);