blob: bec14abf0ba73270eb86fbe061ab6fd84abbfce2 [file] [log] [blame]
module.exports = function(tid, logger, providerUtils) {
// Health Endpoint
this.endPoint = '/health';
// Health Logic
this.health = function (req, res) {
res.send({triggerCount: Object.keys(providerUtils.triggers).length});
};
}