mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 10:28:45 +08:00
12 lines
162 B
Go
12 lines
162 B
Go
package config
|
|
|
|
import (
|
|
"github.com/tal-tech/go-zero/rest"
|
|
"github.com/tal-tech/go-zero/zrpc"
|
|
)
|
|
|
|
type Config struct {
|
|
rest.RestConf
|
|
Rpc zrpc.RpcClientConf
|
|
}
|