mirror of
https://github.com/holos-run/holos.git
synced 2026-03-19 16:54:58 +00:00
19 lines
505 B
Go
19 lines
505 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
// Refer to "How can I track tool dependencies for a module?"
|
|
// https://go.dev/wiki/Modules
|
|
|
|
import (
|
|
_ "connectrpc.com/connect/cmd/protoc-gen-connect-go"
|
|
_ "cuelang.org/go/cmd/cue"
|
|
_ "github.com/bufbuild/buf/cmd/buf"
|
|
_ "github.com/fullstorydev/grpcurl/cmd/grpcurl"
|
|
_ "github.com/google/ko"
|
|
_ "github.com/princjef/gomarkdoc/cmd/gomarkdoc"
|
|
_ "golang.org/x/tools/cmd/godoc"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
)
|