cloud-take-home-assignment-2/external-service/unsupportedMethodResponse.js

6 lines
168 B
JavaScript
Raw Normal View History

2024-05-10 13:03:05 +00:00
const unsupportedMethodResponse = (res) => {
res.writeHead(400);
res.write('Unsupported method');
};
exports.unsupportedMethodResponse = unsupportedMethodResponse;