9router / src /mitm /handlers /cursor.js
2api
feat: configurable stream stall timeout + per-provider UI
88c4c60
Raw
History Blame Contribute Delete
366 Bytes
/**
* 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 };