Files
9router/src/mitm/handlers/cursor.js
2026-03-17 16:12:25 +07:00

16 lines
366 B
JavaScript

/**
* 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 };