mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
0734bbcab3
* add execute files * add protoc-osx * add rpc generation * add rpc generation * add: rpc template generation * update usage * fixed env prepare for project in go path * optimize gomod cache * add README.md * format error * reactor templatex.go * remove waste code * update project.go & README.md * update project.go & README.md
32 lines
603 B
Go
32 lines
603 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)
|
|
return util.With("svc").GoFmt(true).Parse(svcTemplate).SaveTo(map[string]interface{}{
|
|
"imports": fmt.Sprintf(`"%v"`, g.mustGetPackage(dirConfig)),
|
|
}, fileName, false)
|
|
}
|