tinance2-doorbot/include/web_server.h
2023-06-12 19:17:28 +02:00

19 lines
No EOL
356 B
C

#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