iconia/tools.go

17 lines
240 B
Go
Raw Normal View History

2019-11-05 16:27:00 +00:00
//+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)
}