12345678910111213141516171819 |
- package config
- import (
- "github.com/zeromicro/go-zero/rest"
- "github.com/zeromicro/go-zero/zrpc"
- )
- type Config struct {
- rest.RestConf
- AppId int64
- Webrpcport int64
- Gateway struct {
- ServerCode string
- Etcd []string
- }
- Common zrpc.RpcClientConf
- Manager zrpc.RpcClientConf
- Consumer zrpc.RpcClientConf
- }
|