2021-10-14 11:03:25 +02: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 18:16:20 -04:00
|
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
2021-10-14 11:03:25 +02:00
|
|
|
)
|