go-zero/tools/goctl/rpc/gen/gensvc.go

32 lines
613 B
Go
Raw Normal View History

package gen
import (
"fmt"
"path/filepath"
2020-10-15 16:36:49 +08:00
"github.com/tal-tech/go-zero/tools/goctl/templatex"
)
2020-08-28 21:22:35 +08:00
const svcTemplate = `package svc
import {{.imports}}
2020-08-28 21:22:35 +08:00
type ServiceContext struct {
c config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
c:c,
}
}
`
func (g *defaultRpcGenerator) genSvc() error {
svcPath := g.dirM[dirSvc]
fileName := filepath.Join(svcPath, fileServiceContext)
2020-10-15 16:36:49 +08:00
return templatex.With("svc").GoFmt(true).Parse(svcTemplate).SaveTo(map[string]interface{}{
"imports": fmt.Sprintf(`"%v"`, g.mustGetPackage(dirConfig)),
}, fileName, false)
}