1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-22 03:38:41 +02:00
Tony e5fe1e4f63 Kratos protobuf protoc (#71)
* add cross-platform protoc
* add protobuf generator
2019-05-05 20:33:09 +08:00

38 lines
700 B
Go

package main
import (
"log"
"os"
"github.com/urfave/cli"
)
func main() {
app := cli.NewApp()
app.Name = "protc"
app.Usage = "protobuf生成工具"
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "bm",
Usage: "whether to use BM for generation",
Destination: &withBM,
},
cli.BoolFlag{
Name: "grpc",
Usage: "whether to use gRPC for generation",
Destination: &withGRPC,
},
cli.BoolFlag{
Name: "swagger",
Usage: "whether to use swagger for generation",
Destination: &withSwagger,
},
}
app.Action = func(c *cli.Context) error {
return protocAction(c)
}
if err := app.Run(os.Args); err != nil {
log.Fatal(err)
}
}