2020-07-07 19:35:20 +00:00
|
|
|
// +build tools
|
|
|
|
|
|
|
|
/*
|
|
|
|
Copyright 2020 VMware, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Package tools exists to work around a Go modules oddity and depend on some tool versions.
|
|
|
|
package tools
|
|
|
|
|
|
|
|
import (
|
2020-07-27 13:07:34 +00:00
|
|
|
_ "github.com/golang/mock/mockgen"
|
2020-07-07 19:35:20 +00:00
|
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
|
|
)
|