mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-13 18:00:00 +08:00
12 lines
189 B
Go
12 lines
189 B
Go
|
|
package config
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/tal-tech/go-zero/rest"
|
||
|
|
"github.com/tal-tech/go-zero/rpcx"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Config struct {
|
||
|
|
rest.RestConf
|
||
|
|
Add rpcx.RpcClientConf
|
||
|
|
Check rpcx.RpcClientConf
|
||
|
|
}
|