| 123456789101112131415161718192021222324 |
- package config
- import (
- "git.i2edu.net/i2/go-zero/core/stores/cache"
- "git.i2edu.net/i2/go-zero/rest"
- "git.i2edu.net/i2/go-zero/zrpc"
- )
- type Weixin struct {
- Appid string
- Secret string
- }
- type Config struct {
- rest.RestConf
- DataSource string
- Table string
- Transform zrpc.RpcClientConf
- Cache cache.CacheConf
- Weixin Weixin
- JwtAuth struct {
- AccessSecret string
- AccessExpire int64
- }
- }
|