12345678910111213141516171819202122 |
- package config
- import "github.com/tal-tech/go-zero/zrpc"
- type Config struct {
- zrpc.RpcServerConf
- JyDocsMysqlDB MysqlDBConfig
- EsConfig EsConfig
- }
- type MysqlDBConfig struct {
- DriverName string
- DataSourceName string
- MaxOpenConn int
- MaxIdleConn int
- MaxConnLifeTime int
- }
- type EsConfig struct {
- Addr string
- Pool int
- }
|