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 }