| 566 | } |
| 567 | |
| 568 | esp_err_t otaFileHandler(httpd_req_t *req) { |
| 569 | streamMultipartUpload(req); |
| 570 | return ESP_OK; |
| 571 | } |
| 572 | |
| 573 | esp_err_t scriptsHandler(httpd_req_t *req) { |
| 574 | serveWebUIFile(req, "application/javascript", true, scripts_js, scripts_js_size); |
nothing calls this directly
no test coverage detected