| 576 | } |
| 577 | |
| 578 | esp_err_t styleHandler(httpd_req_t *req) { |
| 579 | serveWebUIFile(req, "text/css", true, style_css, style_css_size); |
| 580 | return ESP_OK; |
| 581 | } |
| 582 | |
| 583 | esp_err_t rootHandler(httpd_req_t *req) { |
| 584 | if (req->method == HTTP_POST) { |
nothing calls this directly
no test coverage detected