| 1234567891011121314151617181920212223242526 |
- 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
- }
- }
|