From dcff124efb2ea4a834b74ac0974aa2f2fd000b40 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 4 Jul 2020 10:38:29 +0200 Subject: go.mod: switch to modules for dependency management Godep is long deprecated and modules is the future. Updating dependencies with godep is painful and non-transparent. This will hopefully help to create custom golangci-lint linters. The change was created with: go mod init rm -rf vendor go mod vendor Fixes #1247 --- vendor/cloud.google.com/go/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor/cloud.google.com/go/doc.go') diff --git a/vendor/cloud.google.com/go/doc.go b/vendor/cloud.google.com/go/doc.go index f3293c094..237d84561 100644 --- a/vendor/cloud.google.com/go/doc.go +++ b/vendor/cloud.google.com/go/doc.go @@ -97,4 +97,4 @@ making breaking changes, including removal. These parts of the surface will be labeled with the note, "It is EXPERIMENTAL and subject to change or removal without notice." */ -package cloud +package cloud // import "cloud.google.com/go" -- cgit mrf-deployment