package svc import ( "bp.jydev.jianyu360.cn/BaseService/userCenter/entity" ) type ServiceContext struct { Config entity.RpcConfig } func NewServiceContext(c entity.RpcConfig) *ServiceContext { return &ServiceContext{ Config: c, } }