NewErrorResponse creates an ErrorResponse with the provided message
(msg string)
| 202 | |
| 203 | // NewErrorResponse creates an ErrorResponse with the provided message |
| 204 | func NewErrorResponse(msg string) *ErrorResponse { |
| 205 | return &ErrorResponse{Err: msg} |
| 206 | } |
| 207 | |
| 208 | // Handler forwards requests and responses between the docker daemon and the plugin. |
| 209 | type Handler struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…