mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-06 16:01:28 +00:00
10 lines
140 B
Go
10 lines
140 B
Go
package kafka
|
|
|
|
func GetWorkerTopic(workerID string) string {
|
|
return "w:" + workerID
|
|
}
|
|
|
|
const (
|
|
TopicWorkerEvents = "jobs:worker-events"
|
|
)
|