10 lines
158 B
Go
10 lines
158 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/twitchtv/twirp/protoc-gen-twirp"
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
|
)
|