2017-08-18 20:30:29 +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"`
}