alekzonder/maf

View on GitHub
src/express/resource-not-found/index.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function () {

    return function (req, res) {
        res.sendCtxNow().notFound('resource not found', 'resource_not_found');
    };

};