goProject/.svn/pristine/22/220fecaa6504067877bec738054b2ee97658da3d.svn-base
2025-01-06 16:21:36 +08:00

17 lines
203 B
Plaintext

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