Deleting all apps apart from those used in Ch1 and Ch2 labs

This commit is contained in:
Ravi Srinivasan
2019-06-07 12:51:10 +05:30
parent 9853abc4ac
commit a387a34d24
213 changed files with 0 additions and 6502 deletions

View File

@@ -1,11 +0,0 @@
var express = require('express');
app = express();
app.get('/', function (req, res) {
res.send('Simple app for the Building Applications Lab!\n');
});
app.listen(8080, function () {
console.log('Simple app for the Building Applications Lab!');
});