NewErrorResponse creates an ErrorResponse with the provided message
(msg string)
| 85 | |
| 86 | // NewErrorResponse creates an ErrorResponse with the provided message |
| 87 | func NewErrorResponse(msg string) *ErrorResponse { |
| 88 | return &ErrorResponse{Err: msg} |
| 89 | } |
| 90 | |
| 91 | // Handler forwards requests and responses between the docker daemon and the plugin. |
| 92 | type Handler struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…