config.go 238 B

123456789101112
  1. package config
  2. import (
  3. "github.com/silenceper/wechat/cache"
  4. )
  5. //Config config for 小程序
  6. type Config struct {
  7. AppID string `json:"app_id"` //appid
  8. AppSecret string `json:"app_secret"` //appsecret
  9. Cache cache.Cache
  10. }