mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
14 lines
291 B
Go
14 lines
291 B
Go
|
package global
|
||
|
|
||
|
import (
|
||
|
"hotgo/internal/consts"
|
||
|
"hotgo/internal/library/payment"
|
||
|
"hotgo/internal/service"
|
||
|
)
|
||
|
|
||
|
// 注册支付成功回调方法
|
||
|
func payNotifyCall() {
|
||
|
payment.RegisterNotifyCall(consts.OrderGroupAdminOrder, service.AdminOrder().PayNotify) // 后台充值订单
|
||
|
// ...
|
||
|
}
|