🔥 Removes http system metrics

This commit is contained in:
Rune Harlyk
2026-01-03 13:17:06 +01:00
committed by nikguin04
parent 4c6b0c316d
commit a2f08540f7
3 changed files with 0 additions and 39 deletions
-2
View File
@@ -54,8 +54,6 @@ void setupServer() {
[&](PsychicRequest *request, JsonVariant &json) { return system_service::handleRestart(request); });
server.on("/api/system/sleep", HTTP_POST,
[&](PsychicRequest *request, JsonVariant &json) { return system_service::handleSleep(request); });
// server.on("/api/system/metrics", HTTP_GET,
// [&](PsychicRequest *request) { return system_service::getMetrics(request); });
#if USE_CAMERA
server.on("/api/camera/still", HTTP_GET,
[&](PsychicRequest *request) { return cameraService.cameraStill(request); });