minor cosmetic code fix

This commit is contained in:
richonguzman
2024-02-25 12:00:44 -03:00
parent 414b31d9b8
commit 72c16e1cd0
14 changed files with 24 additions and 11 deletions
+4 -2
View File
@@ -1,6 +1,6 @@
#include "configuration.h"
#include "ota_utils.h"
#include "web_utils.h"
#include "configuration.h"
extern Configuration Config;
@@ -24,6 +24,7 @@ extern const char web_bootstrap_js[] asm("_binary_data_embed_bootstrap_js_gz_sta
extern const char web_bootstrap_js_end[] asm("_binary_data_embed_bootstrap_js_gz_end");
extern const size_t web_bootstrap_js_len = web_bootstrap_js_end - web_bootstrap_js;
namespace WEB_Utils {
AsyncWebServer server(80);
@@ -189,4 +190,5 @@ namespace WEB_Utils {
server.begin();
}
}
}