zirconium-go/core/models/protocol_error.go

8 lines
215 B
Go
Raw Normal View History

package models
type ProtocolError struct {
2021-04-06 13:55:41 +00:00
ErrCode string `structs:"code"`
ErrText string `structs:"text"`
ErrPayload map[string]interface{} `structs:"payload,omitempty"`
}