UNPKG
getting-started
Version:
latest (1.0.1)
1.0.1
Tutoral for Getting Started with Taunus
github.com/taunus/getting-started
taunus/getting-started
getting-started
/
controllers
/
home
/
index.js
11 lines
(9 loc)
•
154 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
module
.
exports
=
function
(
req, res, next
) { res.
viewModel
= {
model
: {
title
:
'Welcome Home, Taunus!'
} };
next
(); };