add missing setContentType

This commit is contained in:
Proddy
2024-01-04 18:08:31 +01:00
parent 3f42c4d56b
commit b6dbf93de2

View File

@@ -175,6 +175,9 @@ class AsyncJsonResponse {
void setCode(uint16_t) {
}
void setContentType(const char * s) {
}
};
typedef std::function<void(AsyncWebServerRequest * request, JsonVariant & json)> ArJsonRequestHandlerFunction;