#include "app.h" #include "custom_api.h" ApiDef customApiDefs[] = { {"/api/ping", "GET", "", true, handlePing, nullptr}, {"/api/add", "POST", "", true, handleAdd, nullptr}, {"/api/led", "POST", "", true, handleLed, nullptr}, {"/api/uptime", "GET", "WebUIConnect", false, handleUptime, nullptr}, {"/api/uptime/events", "GET", "WebUIConnect", false, handleUptimeEvents, nullptr}, }; const size_t CUSTOM_API_DEF_COUNT = sizeof(customApiDefs) / sizeof(customApiDefs[0]);