123456789101112131415161718192021222324252627282930 |
- package config
- import (
- "github.com/tal-tech/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- DataSource *mysqlConfig // 手动代码
- Mysql string
- Redis *RedisConfig
- SurvivalTime int
- }
- type RedisConfig struct {
- Host string
- Addr string
- Modules string
- }
- type mysqlConfig struct {
- DbName string
- Address string
- UserName string
- PassWord string
- MaxOpenConns int
- MaxIdleConns int
- }
- var ConfigJson Config
|