first commit

This commit is contained in:
SowinskiBraeden committed 2022-09-26 16:40:40 -07:00
commit 1685a79836
15 files changed
+725

No files matched your search

+12
View File
@@ -0,0 +1,12 @@
package models
// ErrorMessageResponse returns the error message response struct
type ErrorMessageResponse struct {
Response MessageError
}
// MessageError contains the inner details for the error message response
type MessageError struct {
Message string
Error string
}