mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 12:52:27 +08:00
16 lines
214 B
Go
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}
|
|
}
|