美文网首页
go 包管理

go 包管理

作者: 老鼠慎言 | 来源:发表于2020-12-22 22:11 被阅读0次

    新建一个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 包管理

          本文链接:https://www.haomeiwen.com/subject/zjsenktx.html