In Go, the _____ directory is used to store external dependencies.

  • lib
  • vendor
  • ext
  • deps
In Go, the vendor directory is used to store external dependencies. The vendor directory contains copies of external packages that your Go project depends on. This allows you to have more control over the versions and updates of external dependencies and ensures that your project's build is reproducible.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *