refactor: rename the project as devstar

This commit is contained in:
Levi Yan
2024-07-16 23:28:56 +08:00
parent e4a9d125cd
commit a0ecb6c559
4 changed files with 25 additions and 25 deletions

View File

@@ -2,7 +2,7 @@ import * as vscode from 'vscode';
import RemoteContainer from './remote-container';
import fetch from './fetch'
export default class SIHome {
export default class DSHome {
private context: vscode.ExtensionContext;
private remoteContainer: RemoteContainer;
static defaultUrl = 'http://localhost:8080/tmp/index.html';
@@ -12,7 +12,7 @@ export default class SIHome {
this.remoteContainer = new RemoteContainer()
}
async toggle(url: string = SIHome.defaultUrl) {
async toggle(url: string = DSHome.defaultUrl) {
console.log(url);
const panel = vscode.window.createWebviewPanel(
'myWebview',