13 lines
210 B
Go
13 lines
210 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
|
|
}
|