File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ import { UiUtilVscode } from './util/uiUtil_vscode';
2727import { ApiKeyManager } from './util/apiKey' ;
2828import { startRpcServer } from './ide_services/services' ;
2929import { registerCodeLensProvider } from './panel/codeLens' ;
30+ import { stopDevChatBase } from './handler/sendMessageBase' ;
31+ import exp from 'constants' ;
3032
3133async function isProviderHasSetted ( ) {
3234 try {
@@ -362,4 +364,10 @@ async function activate(context: vscode.ExtensionContext) {
362364 logger . channel ( ) ?. info ( `registerHandleUri:` ) ;
363365 registerHandleUri ( context )
364366}
365- exports . activate = activate ;
367+
368+ async function deactivate ( ) {
369+ // stop devchat
370+ await stopDevChatBase ( { } ) ;
371+ }
372+ exports . activate = activate ;
373+ exports . deactivate = deactivate ;
You can’t perform that action at this time.
0 commit comments