UNPKG

191 BJavaScriptView Raw
1// Waif send microservice
2//
3// This microservice does nothing but respond with the value
4
5module.exports = function(value) {
6 return function(req, res, send) {
7 res.send(value);
8 };
9};