Files
node_task_1a/services/PowerByService.js
T

5 lines
117 B
JavaScript
Raw Normal View History

2022-04-12 08:57:07 -04:00
module.exports = function (req, res, next) {
res.setHeader("X-Powered-By", "Manaknightdigital Inc.");
next();
};