mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-06 15:59:52 +03:00
23 lines
357 B
C++
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
|