Files
kidsbox/device/main/WebInterface.hpp
2021-12-26 14:05:02 +01:00

14 lines
187 B
C++

#ifndef _WEB_INTERFACE_HPP
#define _WEB_INTERFACE_HPP
#include <ESPAsyncWebServer.h>
class WebInterface {
AsyncWebServer* server;
public:
WebInterface();
void start();
};
#endif