Files
mq/constants.go
2024-09-27 15:45:48 +05:45

21 lines
265 B
Go

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