2020-07-07 19:35:20 +00:00
|
|
|
// +build tools
|
|
|
|
|
2020-09-16 14:19:51 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-07-07 19:35:20 +00:00
|
|
|
|
|
|
|
// 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"
|
|
|
|
)
|