ensl_gathers/config/routes.js
2015-07-20 10:41:58 +01:00

13 lines
No EOL
264 B
JavaScript

"use strict";
var config = require("./config.js");
module.exports = function (app) {
app.get("/", function (request, response) {
response.render("index.hbs");
});
app.get("*", function (request, response) {
response.status(404).render("404.hbs");
});
};