Files
mq/constants.go
2024-09-29 16:26:54 +05:45

22 lines
305 B
Go

package mq
type CMD int
const (
SUBSCRIBE CMD = iota + 1
SUBSCRIBE_ACK
PUBLISH
REQUEST
RESPONSE
STOP
)
var (
ConsumerKey = "Consumer-Key"
PublisherKey = "Publisher-Key"
ContentType = "Content-Type"
TypeJson = "application/json"
HeaderKey = "headers"
TriggerNode = "triggerNode"
)