Initial commit

This commit is contained in:
Robert Strouse 2023-01-09 18:15:30 -08:00
commit ee367e7111
28 changed files with 53359 additions and 0 deletions

11
Web.h Normal file
View file

@ -0,0 +1,11 @@
#ifndef webserver_h
#define webserver_h
class Web {
public:
void sendCORSHeaders();
void startup();
void begin();
void loop();
void end();
};
#endif