13 lines
376 B
JavaScript
13 lines
376 B
JavaScript
// Copyright IBM Corp. 2014. All Rights Reserved.
|
|
// Node module: loopback-boot
|
|
// This file is licensed under the MIT License.
|
|
// License text available at https://opensource.org/licenses/MIT
|
|
|
|
/**
|
|
* Exporting a middleware as a property of the main module
|
|
*/
|
|
exports.myMiddleware = function(req, res, next) {
|
|
res.setHeader('X-MY-MIDDLEWARE', 'myMiddleware');
|
|
next();
|
|
};
|