This commit is contained in:
Saoud Rizwan
2024-10-05 23:30:04 -04:00
parent 0914c069af
commit 23d664be8e

View File

@@ -3,7 +3,7 @@
import delay from "delay"
import * as vscode from "vscode"
import { ClineProvider } from "./core/webview/ClineProvider"
import { createClaudeDevAPI } from "./exports"
import { createClineAPI } from "./exports"
import "./utils/path" // necessary to have access to String.prototype.toPosix
/*
@@ -144,7 +144,7 @@ export function activate(context: vscode.ExtensionContext) {
}
context.subscriptions.push(vscode.window.registerUriHandler({ handleUri }))
return createClaudeDevAPI(outputChannel, sidebarProvider)
return createClineAPI(outputChannel, sidebarProvider)
}
// This method is called when your extension is deactivated