UNPKG

generator-hilary

Version:

Yeoman generator for projects that use hilary IoC (DI)

12 lines (10 loc) 265 B
/*jshint unused:false*/ module.exports.name = 'express-errors-404'; module.exports.singleton = true; module.exports.dependencies = []; module.exports.factory = function (req, res, next) { 'use strict'; res.status(404).send({ status: 404 }); };