mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-18 16:01:18 +00:00
13 lines
371 B
Go
13 lines
371 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
// Package tools tracks CLI tool dependencies used by this repository.
|
|
// Versions are pinned in the root Makefile and installed via `make setup-tools`.
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
)
|