Y
Hacker News
new
|
ask
|
show
|
jobs
by
krallin
4778 days ago
I'm not entirely familiar with how go dependencies work, but does using git submodules for the dependencies with go make sense?
1 comments
bjeanes
4778 days ago
Almost. `go get` will not resolve your sub-moduled dependencies. It'll work well enough for developing your library, but will break when people try to consume your library (at least, without git cloning it)
link