Also locks the tools versions and launches them from the packages installed by the go mod. Otherwise, they would have to be manually installed beforehand.
10 lines
147 B
Go
10 lines
147 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/deepmap/oapi-codegen/v2/cmd/oapi-codegen"
|
|
_ "go.uber.org/mock/mockgen"
|
|
)
|