14 lines
245 B
Go
14 lines
245 B
Go
package config
|
|
|
|
import (
|
|
"github.com/zeromicro/go-zero/rest"
|
|
"github.com/zeromicro/go-zero/zrpc"
|
|
)
|
|
|
|
type Config struct {
|
|
rest.RestConf
|
|
DisputeRpcConf zrpc.RpcClientConf
|
|
OrderRpcConf zrpc.RpcClientConf
|
|
PlayerRpcConf zrpc.RpcClientConf
|
|
}
|