1234567891011121314151617181920 |
- package msg
- type GeneralRes struct {
- Code int64 `json:"code"`
- Msg string `json:"msg"`
- }
- type ClientCtlReq struct {
- Type int64 `json:"type"`
- ProxyName string `json:"proxy_name"`
- Passwd string `json:"passwd"`
- }
- type ClientCtlRes struct {
- GeneralRes
- }
- type ServerCtlReq struct {
- Type int64 `json:"type"`
- }
|