Handler is the base to create plugin handlers. It initializes connections and sockets to listen to.
| 13 | // Handler is the base to create plugin handlers. |
| 14 | // It initializes connections and sockets to listen to. |
| 15 | type Handler struct { |
| 16 | mux *http.ServeMux |
| 17 | } |
| 18 | |
| 19 | // NewHandler creates a new Handler with an http mux. |
| 20 | func NewHandler(manifest string) Handler { |
nothing calls this directly
no outgoing calls
no test coverage detected