SimpleCloudNotifier/server/common/ginresp/apiError.go
2022-11-18 21:25:40 +01:00

10 lines
259 B
Go

package ginresp
type apiError struct {
Success bool `json:"success"`
Error int `json:"error"`
ErrorHighlight int `json:"errhighlight"`
Message string `json:"message"`
RawError error `json:"errorObject,omitempty"`
}