UNPKG

express-gateway

Version:

A microservices API gateway built on top of ExpressJS

11 lines (10 loc) 194 B
module.exports = function (client) { const baseUrl = `tokens/`; return { revoke (token) { return client .del(baseUrl + token) .then(res => res.body); } }; };