feat(eventbus): implement conversation and ticket assignment event handlers with notifications

This commit is contained in:
mlogclub
2026-04-21 17:11:50 +08:00
parent 6789a8dee0
commit 64e75dcdf6
7 changed files with 187 additions and 210 deletions
+2 -3
View File
@@ -5,9 +5,10 @@ import (
"cs-agent/internal/pkg/config"
"cs-agent/internal/pkg/logx"
"cs-agent/internal/services/cronx"
"cs-agent/internal/services/event_handlers"
"cs-agent/internal/wxwork"
"log/slog"
_ "cs-agent/internal/services/event_handlers"
)
func Init(configPath string) error {
@@ -37,8 +38,6 @@ func Init(configPath string) error {
return err
}
event_handlers.Register()
// 启动任务调度器
cronx.Init()