11 lines
328 B
C++
11 lines
328 B
C++
|
|
#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},
|
||
|
|
};
|
||
|
|
|
||
|
|
const size_t CUSTOM_API_DEF_COUNT = sizeof(customApiDefs) / sizeof(customApiDefs[0]);
|