17 lines
203 B
Plaintext
17 lines
203 B
Plaintext
package mqMgr
|
|
|
|
// 消息队列配置对象
|
|
type QueueConfig struct {
|
|
// 地域
|
|
Region string
|
|
|
|
// 队列名称
|
|
QueueName string
|
|
|
|
// API密钥Id
|
|
SecretId string
|
|
|
|
// API密钥key
|
|
SecretKey string
|
|
}
|