17 lines
249 B
C
17 lines
249 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "esp_http_server.h"
|
|
|
|
/**
|
|
* @brief Regista os handlers REST de informação do sistema.
|
|
*/
|
|
void register_system_handlers(httpd_handle_t server, void *ctx);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|