tydata-server/deploy/template/rpc/svc.tpl

14 lines
188 B
Smarty
Raw Permalink Normal View History

2025-01-10 00:09:25 +08:00
package svc
import {{.imports}}
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config:c,
}
}