2020-07-07 14:35:20 -05:00
|
|
|
// +build tools
|
|
|
|
|
2020-09-16 10:19:51 -04:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-07-07 14:35:20 -05:00
|
|
|
|
|
|
|
// Package tools exists to work around a Go modules oddity and depend on some tool versions.
|
|
|
|
package tools
|
|
|
|
|
|
|
|
import (
|
2020-07-27 08:07:34 -05:00
|
|
|
_ "github.com/golang/mock/mockgen"
|
2020-07-07 14:35:20 -05:00
|
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
|
|
)
|