blob: ecc63048d37866032063d2d3779143222a21094d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import * as vscode from 'vscode';
import { startIDEServer } from './ide-server';
export async function activate(context: vscode.ExtensionContext) {
startIDEServer(context);
}
export function deactivate() {}
|