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