|
|
|
|
|
by pokstad
3051 days ago
|
|
Go does not treat Github any differently than any other VCS provider when it comes to package management. OG gophers vendor their deps into their repo and avoid creating dependencies on 3rd party code whenever possible. The Go stdlib is very full featured so it is not unrealistic. The problem with the go-bindata could be avoided by always vendoring/forking your deps and never trust any VCS provider (e.g. GitHub, Bitbucket, source forge) to handle your critical dependency needs. |
|