mirror of
https://github.com/oarkflow/mq.git
synced 2025-10-05 16:06:55 +08:00
22 lines
305 B
Go
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"
|
|
)
|