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