17 lines
240 B
Go
17 lines
240 B
Go
|
//+build tools
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
||
|
_ "github.com/twitchtv/twirp/protoc-gen-twirp"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("this is not meant to be called directly")
|
||
|
os.Exit(2)
|
||
|
}
|