config.go 194 B

1234567891011121314
  1. package config
  2. import (
  3. es "call_center/public/es"
  4. "github.com/tal-tech/go-zero/zrpc"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. Mysql struct {
  9. DataSource string
  10. }
  11. EsConf es.EsConfig
  12. }