mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-27 20:38:41 +08:00
12 lines
116 B
Go
12 lines
116 B
Go
package config
|
|
|
|
import (
|
|
"zero/rest"
|
|
"zero/rpcx"
|
|
)
|
|
|
|
type Config struct {
|
|
rest.RestConf
|
|
Rpc rpcx.RpcClientConf
|
|
}
|