You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
742 B
22 lines
742 B
package mq |
|
|
|
// 初始化jetStream流, {streamName, topics...} |
|
var initialStream = [][]string{ |
|
{StreamExchange, "exchange.>"}, |
|
} |
|
|
|
const ( |
|
// ========================== jetstraem定义 ========================== |
|
StreamExchange = "stream-exchange" // 游戏行为jetstraem消息流 |
|
|
|
// ========================== mq主题订阅 ========================== |
|
// ------------- 交易所 ------------- |
|
TopicExchangeTradeInstanceInited = "exchange.trade_instance_inited" // 交易产品初始化完成 |
|
|
|
// ========================== 请求响应 ========================== |
|
// ------------- 拉去历史k线 ------------- |
|
// RequestExchangeHistoryKline = "request.exchange.history_kline" |
|
) |
|
|
|
// nats 空参数 |
|
var NatsNilData = map[string]any{}
|
|
|