mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 12:52:27 +08:00
10 lines
201 B
Go
10 lines
201 B
Go
package config
|
|
|
|
// Config config for pay
|
|
type Config struct {
|
|
AppID string `json:"app_id"`
|
|
MchID string `json:"mch_id"`
|
|
Key string `json:"key"`
|
|
NotifyURL string `json:"notify_url"`
|
|
}
|