| 123456789101112131415161718192021222324252627 |
- package config
- import (
- "github.com/zeromicro/go-zero/core/stores/redis"
- "github.com/zeromicro/go-zero/rest"
- )
- type Config struct {
- rest.RestConf
- Redis redis.RedisConf
- Auth struct {
- AccessSecret string
- AccessExpire int64
- }
- Mysql struct {
- Datasource string
- }
- Wxwork struct {
- Corpid string
- Corpsecret string
- Token string
- ReceiverId string
- EncodingAeskey string
- WelcomeMsg string
- }
- }
|