mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-27 20:38:41 +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
|
||
|
}
|