12345678910111213141516171819202122232425262728293031323334353637 |
- package generator
- import (
- "fmt"
- "path/filepath"
- "github.com/tal-tech/go-zero/tools/goctl/rpc/parser"
- "github.com/tal-tech/go-zero/tools/goctl/util"
- )
- const svcTemplate = `package svc
- import {{.imports}}
- type ServiceContext struct {
- c config.Config
- }
- func NewServiceContext(c config.Config) *ServiceContext {
- return &ServiceContext{
- c:c,
- }
- }
- `
- func (g *defaultGenerator) GenSvc(ctx DirContext, _ parser.Proto, namingStyle NamingStyle) error {
- dir := ctx.GetSvc()
- fileName := filepath.Join(dir.Filename, formatFilename("service_context", namingStyle)+".go")
- text, err := util.LoadTemplate(category, svcTemplateFile, svcTemplate)
- if err != nil {
- return err
- }
- return util.With("svc").GoFmt(true).Parse(text).SaveTo(map[string]interface{}{
- "imports": fmt.Sprintf(`"%v"`, ctx.GetConfig().Package),
- }, fileName, false)
- }
|