mirror of
https://github.com/rstrouse/ESPSomfy-RTS.git
synced 2025-12-12 18:42:10 +01:00
11 lines
171 B
C++
11 lines
171 B
C++
#ifndef webserver_h
|
|
#define webserver_h
|
|
class Web {
|
|
public:
|
|
void sendCORSHeaders();
|
|
void startup();
|
|
void begin();
|
|
void loop();
|
|
void end();
|
|
};
|
|
#endif
|