mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
338 B
14 lines
338 B
// +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() {}
|
|
|