go-zero/tools/goctl/rpc/generator/svc.tpl

14 lines
188 B
Smarty
Raw Normal View History

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