go: 修改應用的名字

刘宏缔的架构森林發表於2024-11-16

一,修改go.mod中的名字

module myfiber

go 1.23.3

修改後:

module industry

go 1.23.3

二,清理和整理模組檔案

$ go mod tidy

三,重新build

$ go build

可以看到編譯後檔名已改變為新模組名字

相關文章