mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 03:28:12 +00:00
11 lines
335 B
Go
11 lines
335 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
// Package tools tracks dependencies on binaries not referenced in this codebase.
|
|
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
|
|
package tools
|
|
|
|
import (
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
)
|