module.exports.returnNotFound = function()

in src/app/httpUtil.js [16:21]


module.exports.returnNotFound = function (message) {
    return {
        statusCode: 404,
        body: JSON.stringify(message)
    }
}