Files
chargeflow/components/rest_api/include/system_api.h
2026-05-15 12:20:47 +01:00

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