mirror of https://github.com/status-im/consul.git
28 lines
608 B
Go
28 lines
608 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package main
|
|
|
|
import (
|
|
"flag"
|
|
|
|
"github.com/hashicorp/consul/internal/tools/protoc-gen-grpc-clone/internal/generate"
|
|
"google.golang.org/protobuf/compiler/protogen"
|
|
plugin "google.golang.org/protobuf/types/pluginpb"
|
|
)
|
|
|
|
var (
|
|
file = flag.String("file", "-", "where to load data from")
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
protogen.Options{
|
|
ParamFunc: flag.CommandLine.Set,
|
|
}.Run(func(gp *protogen.Plugin) error {
|
|
gp.SupportedFeatures = uint64(plugin.CodeGeneratorResponse_FEATURE_PROTO3_OPTIONAL)
|
|
return generate.Generate(gp)
|
|
})
|
|
}
|