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.
38 lines
700 B
38 lines
700 B
6 years ago
|
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)
|
||
|
}
|
||
|
}
|