blob: c5bf9c20f433bc1a710a6c5bcaf6bd98d32cdbf9 [file] [log] [blame]
module.exports = function(logger) {
// Test Endpoint
this.endPoint = '/ping';
// Test Logic
this.ras = function (req, res) {
res.send({msg: 'pong'});
};
};