mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
16 lines
561 B
Go
16 lines
561 B
Go
|
package generator
|
||
|
|
||
|
import "github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
|
||
|
|
||
|
type Generator interface {
|
||
|
Prepare() error
|
||
|
GenMain(ctx DirContext, proto parser.Proto) error
|
||
|
GenCall(ctx DirContext, proto parser.Proto) error
|
||
|
GenEtc(ctx DirContext, proto parser.Proto) error
|
||
|
GenConfig(ctx DirContext, proto parser.Proto) error
|
||
|
GenLogic(ctx DirContext, proto parser.Proto) error
|
||
|
GenServer(ctx DirContext, proto parser.Proto) error
|
||
|
GenSvc(ctx DirContext, proto parser.Proto) error
|
||
|
GenPb(ctx DirContext, protoImportPath []string, proto parser.Proto) error
|
||
|
}
|