zirconium-go/core/models/protocol_error.go
2021-04-06 16:55:41 +03:00

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"`
}