Remove stray file that is instead found in netcon.

This commit is contained in:
Adam Ierymenko 2015-12-21 14:01:48 -08:00
parent 536b7000bc
commit 23eaafc4eb

View File

@ -1,7 +0,0 @@
var http = require('http');
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("welcome to the machine!\n");
});
server.listen(8080);
console.log("Server running!");