Files
old-web/app/controllers/goAgain.js

9 lines
143 B
JavaScript
Raw Permalink Normal View History

2019-09-05 11:14:54 +02:00
const getGoAgain = async (req, res) => {
const title = "Uspjeh!";
2019-09-05 11:14:54 +02:00
res.render("goAgain", { title });
2019-05-19 19:45:19 +02:00
};
module.exports = {
getGoAgain
};