11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
const copilotProxyPlugin = {
|
|
id: "copilot-proxy",
|
|
name: "Copilot Proxy (removed)",
|
|
description: "Deprecated: use the official Copilot SDK integration instead.",
|
|
register() {
|
|
// Intentionally empty: copilot-proxy support has been removed.
|
|
},
|
|
};
|
|
|
|
export default copilotProxyPlugin;
|