🎨 新增 MQ 开关

This commit is contained in:
李寻欢 2024-03-22 23:06:54 +08:00
parent 64c3c9c78b
commit 13205e445f
3 changed files with 7 additions and 0 deletions

View File

@ -37,6 +37,8 @@ task:
# MQ配置
mq:
# 是否启用
enable: false
# RabbitMQ配置
rabbitmq:
host: 10.0.0.247

View File

@ -5,6 +5,7 @@ import "fmt"
// mq
// @description: MQ配置
type mq struct {
Enable bool `json:"enable" yaml:"enable"` // 是否启用
RabbitMQ rabbitMq `json:"rabbitmq" yaml:"rabbitmq"` // RabbitMQ配置
}

View File

@ -16,6 +16,10 @@ const exchangeName = "wechat-message"
// Init
// @description: 初始化MQ
func Init() {
if !config.Conf.Mq.Enable {
log.Println("未启用MQ")
return
}
// 读取MQ连接配置
mqUrl := config.Conf.Mq.RabbitMQ.GetURL()
if mqUrl == "" {