mirror of
https://github.com/oarkflow/mq.git
synced 2025-10-30 23:26:19 +08:00
19 lines
250 B
Go
19 lines
250 B
Go
package mq
|
|
|
|
type CMD int
|
|
|
|
const (
|
|
SUBSCRIBE CMD = iota + 1
|
|
PUBLISH
|
|
REQUEST
|
|
STOP
|
|
)
|
|
|
|
var (
|
|
ConsumerKey = "Consumer-Key"
|
|
PublisherKey = "Publisher-Key"
|
|
ContentType = "Content-Type"
|
|
TypeJson = "application/json"
|
|
HeaderKey = "headers"
|
|
)
|