2021-10-14 09:03:25 +00:00
|
|
|
//go:build tools
|
|
|
|
// +build tools
|
|
|
|
|
|
|
|
// tools is a dummy package that will be ignored for builds, but included for dependencies
|
|
|
|
package tools
|
|
|
|
|
|
|
|
import (
|
2023-02-06 22:16:20 +00:00
|
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
2021-10-14 09:03:25 +00:00
|
|
|
)
|