Skip to content
Snippets Groups Projects
vendor.go 338 B
Newer Older
  • Learn to ignore specific revisions
  • // +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() {}