mirror of
https://github.com/cadmium-im/zirconium-go.git
synced 2024-11-23 19:02:20 +00:00
8 lines
205 B
Go
8 lines
205 B
Go
|
package models
|
||
|
|
||
|
type ProtocolError struct {
|
||
|
ErrCode string `json:"errCode"`
|
||
|
ErrText string `json:"errText"`
|
||
|
ErrPayload map[string]interface{} `json:"errPayload"`
|
||
|
}
|