1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-04 12:52:27 +08:00
Files
wechat/pay/notify/notify.go
2020-05-22 14:37:58 +08:00

16 lines
214 B
Go

package notify
import (
"github.com/silenceper/wechat/v2/pay/config"
)
//Notify 回调
type Notify struct {
*config.Config
}
//NewNotify new
func NewNotify(cfg *config.Config) *Notify {
return &Notify{cfg}
}