frp/models/msg/msg.go

21 lines
325 B
Go
Raw Normal View History

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