Files
internship_node/day11/services/PowerByService.js
T

5 lines
117 B
JavaScript
Raw Normal View History

2022-02-06 22:15:10 -05:00
module.exports = function (req, res, next) {
res.setHeader("X-Powered-By", "Manaknightdigital Inc.");
next();
};