tinance2-doorbot/include/web_server.h

19 lines
356 B
C
Raw Normal View History

2023-06-12 17:17:28 +00:00
#ifndef WEB_SERVER_H
#define WEB_SERVER_H
#include <AsyncTCP.h>
#include "ESPAsyncWebServer.h"
#include "SPIFFS.h"
#include <ArduinoJson.h>
#include <AsyncJson.h>
// Set web server port number to 80
AsyncWebServer server(80);
#ifdef LOCAL_ACL
#include "ACL.h"
ACL acl = {
};
#endif
#endif