config.go 213 B

12345678910111213
  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. }