UNPKG

vpn.email

Version:
10 lines (9 loc) 269 B
"use strict"; module.exports = function (app) { app.get("/firstRun/", (req, res) => { res.render('firstRun', { title: 'firstRun' }); }); app.get("/firstRun/legal", (req, res) => { res.render('firstRun/legal', { title: 'legal' }); }); };