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.
 
 
 
 
kratos/tool/kratos-protoc/grpc.go

25 lines
497 B

package main
import (
"os/exec"
"github.com/urfave/cli"
)
const (
_getGRPCGen = "go get github.com/gogo/protobuf/protoc-gen-gogofast"
_grpcProtoc = "protoc --proto_path=%s --proto_path=%s --proto_path=%s --gogofast_out=plugins=grpc:."
)
func installGRPCGen() error {
if _, err := exec.LookPath("protoc-gen-gogofast"); err != nil {
if err := goget(_getGRPCGen); err != nil {
return err
}
}
return nil
}
func genGRPC(ctx *cli.Context) error {
return generate(ctx, _grpcProtoc)
}