cloud-take-home-assignment-2/external-service/unsupportedMethodResponse.js
2024-05-10 14:03:05 +01:00

6 lines
168 B
JavaScript

const unsupportedMethodResponse = (res) => {
res.writeHead(400);
res.write('Unsupported method');
};
exports.unsupportedMethodResponse = unsupportedMethodResponse;