forked from chef/automate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vendor.go
24 lines (20 loc) · 840 Bytes
/
vendor.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// +build vendor
package main
// This file exists to trick "go mod" into including packages we need but aren't
// "imported" directly. It has no other purpose and is not inteded to be run.
import (
_ "github.com/ckaznocha/protoc-gen-lint"
_ "github.com/envoyproxy/protoc-gen-validate"
_ "github.com/go-delve/delve/cmd/dlv"
_ "github.com/golang/mock/gomock"
_ "github.com/golang/mock/mockgen"
_ "github.com/golang/protobuf/protoc-gen-go"
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway"
_ "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger"
_ "github.com/kevinburke/go-bindata/go-bindata"
_ "golang.org/x/perf/cmd/benchstat"
_ "github.com/bufbuild/buf/cmd/buf"
_ "github.com/bufbuild/buf/cmd/protoc-gen-buf-check-breaking"
_ "github.com/bufbuild/buf/cmd/protoc-gen-buf-check-lint"
)
func main() {}