Browse Source

more Go Module notes

chore/proposed-structure
Kyle Quest 5 years ago
parent
commit
5b325fed76
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      README.md

+ 1
- 1
README.md View File

@@ -57,7 +57,7 @@ Ok not to use it if your app project is really small and where an extra level of


### `/vendor` ### `/vendor`


Application dependencies (managed manually or by your favorite dependency management tool like the new built-in [`Go Modules`](https://github.com/golang/go/wiki/Modules) feature).
Application dependencies (managed manually or by your favorite dependency management tool like the new built-in [`Go Modules`](https://github.com/golang/go/wiki/Modules) feature). The `go mod vendor` command will create the `/vendor` directory for you. Note that you might need to add the `-mod=vendor` flag to your `go build` command if you are not using Go 1.14 where it's on by default.


Don't commit your application dependencies if you are building a library. Don't commit your application dependencies if you are building a library.




Loading…
Cancel
Save