service_context.go 633 B

12345678910111213141516171819202122232425
  1. package svc
  2. import (
  3. "call_center/db/model"
  4. "call_center/db/rpc/internal/config"
  5. es "call_center/public/es"
  6. "github.com/tal-tech/go-zero/core/stores/sqlx"
  7. )
  8. type ServiceContext struct {
  9. Config config.Config
  10. ConfigModel model.ChatConfigsModel
  11. SensWordModel model.ChatSensitiveWordsModel
  12. Es es.EsMgrInterface
  13. }
  14. func NewServiceContext(c config.Config) *ServiceContext {
  15. conn := sqlx.NewMysql(c.Mysql.DataSource)
  16. return &ServiceContext{
  17. Config: c,
  18. ConfigModel: model.NewChatConfigsModel(conn),
  19. SensWordModel: model.NewChatSensitiveWordsModel(conn),
  20. Es: es.New(c.EsConf),
  21. }
  22. }