config.go 177 B

1234567891011
  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. Token string
  8. Cache *gcache.Cache
  9. }