goProject/trunk/framework/mqMgr/config.go

17 lines
203 B
Go
Raw Normal View History

2025-01-06 16:01:02 +08:00
package mqMgr
// 消息队列配置对象
type QueueConfig struct {
// 地域
Region string
// 队列名称
QueueName string
// API密钥Id
SecretId string
// API密钥key
SecretKey string
}