config.go 220 B

123456789101112
  1. package context
  2. import "github.com/gogf/gf/os/gcache"
  3. // Config for user
  4. type Config struct {
  5. AppID string
  6. AppSecret string
  7. Token string
  8. EncodingAESKey string
  9. Cache *gcache.Cache
  10. }