elife
Version:
Express life // jump start your web application with express
29 lines (18 loc) • 384 B
JavaScript
module.exports = function(View, Env, Filre){
var routes = {};
routes.get = {
'/': function () {
return 'Hello Word!';
}
};
routes.post = {};
routes.delete = {};
routes.put = {};
routes.match = {
};
routes.all = {
};
routes.controller = {
};
return routes;
};