You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
371 B
Go
20 lines
371 B
Go
package wire
|
|
|
|
type Response struct {
|
|
Re int `json:"re,omitempty"`
|
|
Type string `json:"type"`
|
|
Body interface{} `json:"body"`
|
|
}
|
|
|
|
func NewResponse(re int, v Value) Response {
|
|
return Response{
|
|
Re: re,
|
|
Type: v.NetTag(),
|
|
Body: v,
|
|
}
|
|
}
|
|
|
|
func ErrorResponse(re int, t string, args ...interface{}) Response {
|
|
return NewResponse(re, Errorf(t, args...))
|
|
}
|