How does Go update third-party packages?

后端 未结 7 1112
盖世英雄少女心
盖世英雄少女心 2020-12-22 15:35

Looking how actively golang packages grow and improve I wonder how the problem with package versions is solved?

I see that one way is to store third-party packages u

7条回答
  •  庸人自扰
    2020-12-22 16:06

    @tux answer is great, just wanted to add that you can use go get to update a specific package:

    go get -u full_package_name
    

提交回复
热议问题