mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
16 lines
520 B
TypeScript
16 lines
520 B
TypeScript
import * as vscode from 'vscode';
|
|
import { registerChatLibChatParticipant } from './chatUtilsSample';
|
|
import { registerSimpleParticipant } from './simple';
|
|
import { registerToolUserChatParticipant } from './toolParticipant';
|
|
import { registerChatTools } from './tools';
|
|
|
|
export function activate(context: vscode.ExtensionContext) {
|
|
registerSimpleParticipant(context);
|
|
registerToolUserChatParticipant(context);
|
|
registerChatLibChatParticipant(context);
|
|
|
|
registerChatTools(context);
|
|
}
|
|
|
|
export function deactivate() { }
|