config.go 201 B

123456789
  1. package config
  2. // Config config for pay
  3. type Config struct {
  4. AppID string `json:"app_id"`
  5. MchID string `json:"mch_id"`
  6. Key string `json:"key"`
  7. NotifyURL string `json:"notify_url"`
  8. }