UNPKG

vpn.email

Version:
11 lines (10 loc) 369 B
/// <reference path="../../../typings/tsd.d.ts" /> import express = require('express'); module.exports = function (app:express.Router) { app.get("/firstRun/", (req, res) => { res.render('firstRun', { title: 'firstRun' }); }); app.get("/firstRun/legal",(req, res) => { res.render('firstRun/legal', { title: 'legal' }); }); }