Files
mq/constants.go
2024-09-29 00:50:59 +05:45

21 lines
275 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"
)