1234567891011121314151617181920212223242526272829 |
- package config
- import (
- "github.com/tal-tech/go-zero/zrpc"
- )
- type Config struct {
- zrpc.RpcServerConf
- DataSource *mysqlConfig // 手动代码
- Mysql string
- Redis *RedisConfig
- }
- 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
|