config.go 335 B

1234567891011121314
  1. // Package config 小程序 config 配置
  2. package config
  3. import (
  4. "github.com/silenceper/wechat/v2/cache"
  5. )
  6. // Config .config for 小程序
  7. type Config struct {
  8. AppID string `json:"app_id"` // appid
  9. AppSecret string `json:"app_secret"` // appSecret
  10. AppKey string `json:"app_key"` // appKey
  11. Cache cache.Cache
  12. }