Mashape/mockbin

View on GitHub
lib/routes/hello.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module.exports = function hello(req, res, next) {
    res.view = "index";

    res.body = "Hello World!";

    next();
};