mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-13 05:12:55 -07:00
15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
|
|
/**
|
||
|
|
* @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() {}
|