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