config.go 253 B

1234567891011121314
  1. package context
  2. import "github.com/gogf/gf/os/gcache"
  3. // Config for user
  4. type Config struct {
  5. CorpId string //企业ID
  6. AgentId string //应用ID
  7. AppKey string
  8. AppSecret string
  9. AESKey string
  10. Token string
  11. Cache *gcache.Cache
  12. }