Vendor dependencies

Run go mod vendor to copy all dependencies from go.mod into a local vendor directory for offline builds.

Vendor dependencies are managed by adding a vendor directory to your project root containing copies of required external packages. To populate this directory, run the following command in your project root:

go mod vendor

This command copies all dependencies listed in your go.mod file into the vendor directory, allowing your project to build without network access.