mirror of
https://github.com/typicode/json-server.git
synced 2025-07-28 12:43:18 +08:00
5 lines
89 B
JavaScript
5 lines
89 B
JavaScript
module.exports = function (req, res, next) {
|
|
res.header('X-Hello', 'World')
|
|
next()
|
|
}
|