10 lines
173 B
Go
10 lines
173 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "github.com/goreleaser/goreleaser"
|
|
_ "github.com/vektra/mockery/v2"
|
|
)
|