NewErrorResponse creates an ErrorResponse with the provided message
(msg string)
| 99 | |
| 100 | // NewErrorResponse creates an ErrorResponse with the provided message |
| 101 | func NewErrorResponse(msg string) *ErrorResponse { |
| 102 | return &ErrorResponse{Err: msg} |
| 103 | } |
| 104 | |
| 105 | // Driver represent the interface a driver must fulfill. |
| 106 | type Driver interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…