| 3 | import "net/http" |
| 4 | |
| 5 | type ClientErr struct { |
| 6 | HttpCode int `json:"code"` |
| 7 | Message string `json:"message"` |
| 8 | LogMess string `json:"-"` |
| 9 | Errors map[string]string `json:"errors,omitempty"` |
| 10 | } |
| 11 | |
| 12 | type InternalErr struct { |
| 13 | HttpCode int `json:"code"` |
nothing calls this directly
no outgoing calls
no test coverage detected