goProject/trunk/framework/mqMgr/config.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

17 lines
203 B
Go

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