remove cruft

This commit is contained in:
AJ ONeal 2015-04-04 16:22:52 +00:00
parent fa0c3fa1b5
commit b938826c6b
1 changed files with 0 additions and 13 deletions

13
app.js
View File

@ -1,13 +0,0 @@
'use strict';
var express = require('express')
;
module.exports.create = function (server, host, port, publicDir) {
var app = express()
;
app.use(express.static(publicDir));
return app;
};