config.go 263 B

123456789101112131415
  1. package config
  2. import (
  3. "github.com/zeromicro/go-zero/zrpc"
  4. "knowledgeBase/entity"
  5. )
  6. type Config struct {
  7. zrpc.RpcServerConf
  8. WebRpcPort int64
  9. MysqlMain entity.MysqlMainStruct
  10. Es entity.EsStruct
  11. Segment string
  12. TestConf zrpc.RpcClientConf
  13. }