Files
warmbly/internal/infrastructure/kafka/topics.go
T

10 lines
140 B
Go

package kafka
func GetWorkerTopic(workerID string) string {
return "w:" + workerID
}
const (
TopicWorkerEvents = "jobs:worker-events"
)