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