tianyuan-api-server/template/rpc/svc.tpl
2024-10-02 00:57:17 +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,
}
}