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