crusader 24f7b3d3d6 ing
2017-08-25 11:33:00 +09:00

12 lines
196 B
Go

package protocol
import (
"encoding/json"
)
type ServerResponse struct {
Id *json.RawMessage `json:"id"`
Result interface{} `json:"result"`
Error interface{} `json:"error"`
}