1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-07 06:02:26 +08:00
Files
wechat/pay/notify/notify.go
2020-01-20 13:54:04 +08:00

16 lines
211 B
Go

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