[vscode-spring-cli]: boot new command support

This commit is contained in:
aboyko
2024-01-17 17:02:15 -05:00
parent dce68a0f2a
commit ce45532748
5 changed files with 91 additions and 92 deletions

View File

@@ -4,13 +4,13 @@
"use strict";
import * as vscode from "vscode";
import { Cli } from "./cli/core";
import { handleCommand } from "./boot-project/project-new";
import { handleNew } from "./boot-project/boot-project";
export const CLI = new Cli();
export async function activate(context: vscode.ExtensionContext): Promise<void> {
vscode.commands.registerCommand('vscode-spring-cli.new-project', () => {
handleCommand({});
handleNew({});
});
}