新建一個go 程序 比如test.go
package main
import "github.com/astaxie/beego"
func main() {
beego.Run()
}
在這個目錄下運行 go mod init test
就會生成一個mod 文件
module hello
go 1.15
require github.com/astaxie/beego v1.12.3
每次添加新的包比庄,運行程序都會更新
新建一個go 程序 比如test.go
package main
import "github.com/astaxie/beego"
func main() {
beego.Run()
}
在這個目錄下運行 go mod init test
就會生成一個mod 文件
module hello
go 1.15
require github.com/astaxie/beego v1.12.3
每次添加新的包比庄,運行程序都會更新