feat(eventbus): implement event handling for ticket and conversation assignments

This commit is contained in:
mlogclub
2026-04-21 16:41:12 +08:00
parent df13d5ced5
commit 6c005d5daa
13 changed files with 433 additions and 170 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ func Register[T any](opts ...Option[T]) *Bus[T] {
return bus.(*Bus[T])
}
created := New[T](opts...)
created := New(opts...)
buss[key] = created
return created
}