This commit is contained in:
2024-07-31 17:25:36 +08:00
parent 9182bf0c16
commit 642dd8bb0d
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -39,7 +39,6 @@ func StartRabbitMqConsume() {
RoutingKey: "CouponExpired",
Handler: consumer.CouponExpire,
}
go startConsumer(s)
// 取消未支付订单
@@ -49,7 +48,6 @@ func StartRabbitMqConsume() {
RoutingKey: "CancelUnPayOrder",
Handler: consumer.CancelUnPayOrder,
}
go startConsumer(s)
}