updated how the err response should look to follow a pattern

This commit is contained in:
James Tombleson 2024-04-02 16:30:14 -07:00
parent 373f7da678
commit d9625e0b7d
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package domain
type ErrorResponse struct {
HttpCode int `json:"code"`
Success bool `json:"success"`
Message string `json:"message"`
}