Handle
(resp http.ResponseWriter, req *http.Request, p httprouter.Params)
| 328 | |
| 329 | // Handle |
| 330 | func (h logHandler) Handle(resp http.ResponseWriter, req *http.Request, p httprouter.Params) { |
| 331 | // Uncomment the line below to enable endpoint path logging for debugging. |
| 332 | // logger.Debug(h.path) |
| 333 | |
| 334 | // Call the actual handler function with the response, request, and parameters. |
| 335 | h.h(resp, req, p) |
| 336 | } |
| 337 | |
| 338 | //go:embed all:web/explorer/out |
| 339 | var explorerFS embed.FS |
no outgoing calls
no test coverage detected