mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-26 11:28:46 +08:00
24 lines
513 B
Go
24 lines
513 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/goen"
|
||
|
)
|
||
|
|
||
|
func Rpc(c *cli.Context) error {
|
||
|
rpcCtx := ctx.MustCreateRpcContextFromCli(c)
|
||
|
generator := gogen.NewDefaultRpcGenerator(rpcCtx)
|
||
|
rpcCtx.Must(generator.Generate())
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func RpcTemplate(c *cli.Context) error {
|
||
|
out := c.String("out")
|
||
|
idea := c.Bool("idea")
|
||
|
generator := gogen.NewRpcTemplate(out, idea)
|
||
|
generator.MustGenerate()
|
||
|
return nil
|
||
|
}
|