12 lines
196 B
Go
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"`
|
|
}
|