Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit fd8a232

Browse files
committed
Refactor: package name
1 parent 5227a00 commit fd8a232

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"syscall"
1111
"time"
1212

13-
"mcsmanager.com/desktop-app/utils"
13+
"github.com/MCSManager/Launcher/utils"
1414
)
1515

1616
type ProcessMgr struct {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module mcsmanager.com/desktop-app
1+
module github.com/MCSManager/Launcher
22

33
go 1.19
44

main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"fyne.io/fyne/v2/container"
1414
"fyne.io/fyne/v2/layout"
1515
"fyne.io/fyne/v2/widget"
16-
"mcsmanager.com/desktop-app/cmd"
17-
"mcsmanager.com/desktop-app/uiw"
18-
"mcsmanager.com/desktop-app/utils"
16+
"github.com/MCSManager/Launcher/cmd"
17+
"github.com/MCSManager/Launcher/uiw"
18+
"github.com/MCSManager/Launcher/utils"
1919
)
2020

2121
type WebConfig struct {
@@ -76,7 +76,7 @@ func main() {
7676

7777
//守护进程管理
7878
pwd, _ := os.Getwd()
79-
fmt.Println("开始工作目录", pwd)
79+
fmt.Println("CWD:", pwd)
8080
// 程序所在目录
8181
daemon := cmd.NewProcessMgr(pwd+"/mcsmanager/daemon/", "./node_app.exe", "app.js")
8282
web := cmd.NewProcessMgr(pwd+"/mcsmanager/web/", "./node_app.exe", "app.js")

0 commit comments

Comments
 (0)