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