1 import { Command } from "./command.mjs";
2 import Logger from "../logger.mjs";
3 import { type Uri } from "vscode";
4 import { NewProjectPanel } from "../webview/newProjectPanel.mjs";
6 export default class NewExampleProjectCommand extends Command {
7 private _logger: Logger = new Logger("NewExampleProjectCommand");
9 public static readonly id = "newExampleProject";
11 constructor(private readonly _extensionUri: Uri) {
12 super(NewExampleProjectCommand.id);
16 // show webview where the process of creating a new project is continued
17 NewProjectPanel.createOrShow(this._extensionUri, false, true);