| 1 | package dto |
| 2 | |
| 3 | type Error struct { |
| 4 | Message string `json:"message"` |
| 5 | Description string `json:"description"` |
| 6 | } |
| 7 | |
| 8 | func NewError(message, description string) Error { |
| 9 | return Error{ |
nothing calls this directly
no outgoing calls
no test coverage detected