🎨 Renames webserver and websocket

This commit is contained in:
Rune Harlyk
2026-01-24 13:11:53 +01:00
committed by Rune Harlyk
parent eb8b83736a
commit f033e8b0ae
15 changed files with 131 additions and 136 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#include <ap_service.h>
#include <communication/native_server.h>
#include <communication/webserver.h>
static const char *TAG = "APService";
@@ -17,7 +17,7 @@ esp_err_t APService::getStatus(httpd_req_t *request) {
JsonDocument doc;
JsonObject root = doc.to<JsonObject>();
status(root);
return NativeServer::sendJson(request, 200, doc);
return WebServer::sendJson(request, 200, doc);
}
void APService::status(JsonObject &root) {