go-zero/tools/goctl/rpc/generator/svc.tpl
2022-04-04 13:12:05 +08:00

14 lines
188 B
Smarty

package svc
import {{.imports}}
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config:c,
}
}