frp/models/msg/msg.go

21 lines
325 B
Go
Raw Normal View History

package msg
2016-01-27 21:24:36 +08:00
type GeneralRes struct {
2016-02-03 18:46:24 +08:00
Code int64 `json:"code"`
Msg string `json:"msg"`
2016-01-27 21:24:36 +08:00
}
type ClientCtlReq struct {
2016-02-03 18:46:24 +08:00
Type int64 `json:"type"`
ProxyName string `json:"proxy_name"`
Passwd string `json:"passwd"`
2016-01-27 21:24:36 +08:00
}
type ClientCtlRes struct {
GeneralRes
}
type ServerCtlReq struct {
2016-02-03 18:46:24 +08:00
Type int64 `json:"type"`
2016-01-27 21:24:36 +08:00
}