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