package svc import "gitea.youtukeji.com.cn/xiabin/youtu_grpc/ranking_management/internal/config" type ServiceContext struct { Config config.Config } func NewServiceContext(c config.Config) *ServiceContext { return &ServiceContext{ Config: c, } }