I created a library / package in Go, and the consensus was that only applications include a vendorfolder in their project, and libraries do not.
So now I included my package in another project ( govendor'ed), and everything worked fine until it got to Jenkins, and that was to use my local resources, where 2 of the dependencies were missing.
My readme file says that all you need to do is go getmy project, and you're done . But this is not the case if you use govendoring.
What should be the approach to my library? Can this be solved, or is this βproblemβ something that the end user must solve because they are using govendor?
source
share