123456789101112131415161718 |
- package config
- import (
- "github.com/zeromicro/go-zero/core/logx"
- "github.com/zeromicro/go-zero/rest"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- rest.RestConf
- UserCenterRpcConf zrpc.RpcClientConf
- GatewayRpcConf zrpc.RpcClientConf
- Logx logx.LogConf
- Auth struct {
- AccessSecret string
- AccessExpire int64
- }
- }
|