File size: 366 Bytes
88c4c60 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /**
* Cursor MITM handler — coming soon
* This feature is currently under development.
*/
async function intercept(req, res) {
res.writeHead(501, { "Content-Type": "application/json" });
res.end(JSON.stringify({
error: {
message: "Cursor MITM support is coming soon.",
type: "not_implemented"
}
}));
}
module.exports = { intercept };
|