9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
const identifyAPI = (api) => {
|
|
return (req, _, next) => {
|
|
req.payloadAPI = api;
|
|
next();
|
|
};
|
|
};
|
|
|
|
export default identifyAPI;
|