Files
EMS-ESP32/lib/framework/FeaturesService.h
2023-12-25 13:27:02 +01:00

23 lines
357 B
C++

#ifndef FeaturesService_h
#define FeaturesService_h
#include <Features.h>
#include <WiFi.h>
#include <ArduinoJson.h>
#include <PsychicHttp.h>
#define FEATURES_SERVICE_PATH "/rest/features"
class FeaturesService {
public:
FeaturesService(PsychicHttpServer * server);
void registerURI();
private:
PsychicHttpServer * _server;
};
#endif