config.go 273 B

12345678910111213141516
  1. package config
  2. import "github.com/tal-tech/go-zero/zrpc"
  3. type Config struct {
  4. zrpc.RpcServerConf
  5. JyDocsMysqlDB MysqlDBConfig
  6. }
  7. type MysqlDBConfig struct {
  8. DriverName string
  9. DataSourceName string
  10. MaxOpenConn int
  11. MaxIdleConn int
  12. MaxConnLifeTime int
  13. }