mirror of
https://github.com/dagu-org/dagu.git
synced 2025-12-27 22:26:13 +00:00
21 lines
681 B
Go
21 lines
681 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
// This package keeps track of tool dependencies, see:
|
|
// https://github.com/golang/go/issues/25922
|
|
// https://www.jvt.me/posts/2022/06/15/go-tools-dependency-management/
|
|
|
|
import (
|
|
_ "github.com/getkin/kin-openapi/cmd/validate"
|
|
_ "github.com/golangci/golangci-lint/v2/cmd/golangci-lint"
|
|
_ "github.com/google/addlicense"
|
|
_ "github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen"
|
|
_ "github.com/rhysd/changelog-from-release/v3"
|
|
_ "github.com/segmentio/golines"
|
|
_ "github.com/yoheimuta/protolint/cmd/protolint"
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
_ "gotest.tools/gotestsum"
|
|
)
|