14 lines
338 B
Go
14 lines
338 B
Go
// +build vendor
|
|
|
|
package main
|
|
|
|
// This file exists to trick "go mod vendor" to include "main" packages.
|
|
// It is not expected to build, the build tag above is only to prevent this
|
|
// file from being included in builds.
|
|
|
|
import (
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "golang.org/x/lint/golint"
|
|
)
|
|
|
|
func main() {}
|