PCM/adaptor/PCM-AI/PCM-HANWUJI/rpc/internal/svc/servicecontext.go

14 lines
229 B
Go

package svc
import "PCM/adaptor/PCM-AI/PCM-HANWUJI/rpc/internal/config"
type ServiceContext struct {
Config config.Config
}
func NewServiceContext(c config.Config) *ServiceContext {
return &ServiceContext{
Config: c,
}
}