Ground work for Spring-CLI extension

This commit is contained in:
aboyko
2024-01-04 17:58:55 -05:00
parent 39bad4f173
commit 0b96f042ab
10 changed files with 2573 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
"use strict";
import * as vscode from "vscode";
import { Cli } from "./cli/core";
import { handleCommand } from "./boot-project/project-new";
export const CLI = new Cli();
export async function activate(context: vscode.ExtensionContext): Promise<void> {
vscode.commands.registerCommand('vscode-spring-cli.new-project', () => {
handleCommand({});
});
}
export async function deactivate(): Promise<void> {
}