-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathguides.ts
More file actions
16 lines (13 loc) · 540 Bytes
/
guides.ts
File metadata and controls
16 lines (13 loc) · 540 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import * as vscode from "vscode";
import GuidesBinder from "./binders/guides-binder";
import TelemetryBinder from "./binders/telemetry-binder";
import GuidesController from "./controllers/guides-controller";
import TelemetryController from "./controllers/telemetry-controller";
export function activate(context: vscode.ExtensionContext) {
context.subscriptions.push(new GuidesBinder().bind(
new GuidesController()
));
context.subscriptions.push(new TelemetryBinder().bind(
new TelemetryController()
));
}