config.go 195 B

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