Handler forwards requests and responses between the docker daemon and the plugin.
| 102 | |
| 103 | // Handler forwards requests and responses between the docker daemon and the plugin. |
| 104 | type Handler struct { |
| 105 | plugin Plugin |
| 106 | sdk.Handler |
| 107 | } |
| 108 | |
| 109 | // NewHandler initializes the request handler with a plugin implementation. |
| 110 | func NewHandler(plugin Plugin) *Handler { |
nothing calls this directly
no outgoing calls
no test coverage detected