tianyuan-api-server/template/rpc/svc.tpl

14 lines
188 B
Smarty
Raw Permalink Normal View History

2024-10-02 00:57:17 +08:00
package svc
import {{.imports}}
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config:c,
}
}