mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
41964f9d52
* model/rpc generate code from template cache * delete unused(deprecated) code * support template init|update|clean|revert * model: return the execute result for insert and update operation * // deprecated: containsAny * add template test * add default buildVersion * update build version
37 lines
702 B
Go
37 lines
702 B
Go
package gen
|
|
|
|
import (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"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 *defaultRpcGenerator) genSvc() error {
|
|
svcPath := g.dirM[dirSvc]
|
|
fileName := filepath.Join(svcPath, fileServiceContext)
|
|
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"`, g.mustGetPackage(dirConfig)),
|
|
}, fileName, false)
|
|
}
|