service_context.go 463 B

12345678910111213141516171819202122
  1. package svc
  2. import (
  3. "call_center/call/rpc/internal/config"
  4. "call_center/call/rpc/internal/interaction"
  5. "call_center/db/rpc/db"
  6. "github.com/tal-tech/go-zero/zrpc"
  7. )
  8. type ServiceContext struct {
  9. Config config.Config
  10. Db interaction.InterDb
  11. }
  12. func NewServiceContext(c config.Config) *ServiceContext {
  13. dbRpc := db.NewDb(zrpc.MustNewClient(c.DbRpc))
  14. interDb := interaction.NewInterDb(dbRpc)
  15. return &ServiceContext{
  16. Config: c,
  17. Db: interDb,
  18. }
  19. }