14 lines
267 B
Go
14 lines
267 B
Go
package svc
|
|
|
|
import "gitea.youtukeji.com.cn/xiabin/youtu_grpc/douyin_ecpm_calculation_service/internal/config"
|
|
|
|
type ServiceContext struct {
|
|
Config config.Config
|
|
}
|
|
|
|
func NewServiceContext(c config.Config) *ServiceContext {
|
|
return &ServiceContext{
|
|
Config: c,
|
|
}
|
|
}
|