suman-server
Version:
Server/DB/watcher for Suman test runner
22 lines (12 loc) • 315 B
JavaScript
/**
* Created by denman on 12/14/2015.
*/
var url = require('url');
var fs = require('fs');
var path = require('path');
module.exports = function(req,res){
var helpers = require('./index');
var fsPath = req.sumanData.fsPath;
console.log('fsPath:', fsPath);
helpers.serveFile(req,res);
};