mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
0734bbcab3
* add execute files * add protoc-osx * add rpc generation * add rpc generation * add: rpc template generation * update usage * fixed env prepare for project in go path * optimize gomod cache * add README.md * format error * reactor templatex.go * remove waste code * update project.go & README.md * update project.go & README.md
24 lines
508 B
Go
24 lines
508 B
Go
package command
|
|
|
|
import (
|
|
"github.com/urfave/cli"
|
|
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/ctx"
|
|
"github.com/tal-tech/go-zero/tools/goctl/rpc/gen"
|
|
)
|
|
|
|
func Rpc(c *cli.Context) error {
|
|
rpcCtx := ctx.MustCreateRpcContextFromCli(c)
|
|
generator := gen.NewDefaultRpcGenerator(rpcCtx)
|
|
rpcCtx.Must(generator.Generate())
|
|
return nil
|
|
}
|
|
|
|
func RpcTemplate(c *cli.Context) error {
|
|
out := c.String("out")
|
|
idea := c.Bool("idea")
|
|
generator := gen.NewRpcTemplate(out, idea)
|
|
generator.MustGenerate()
|
|
return nil
|
|
}
|