15 lines
439 B
C
15 lines
439 B
C
// =========================
|
|
// loadbalancing_settings_api.h
|
|
// =========================
|
|
|
|
#ifndef LOADBALANCING_SETTINGS_API_H
|
|
#define LOADBALANCING_SETTINGS_API_H
|
|
|
|
#include "esp_err.h"
|
|
#include "esp_http_server.h"
|
|
|
|
// Função para registrar os manipuladores de URI para as configurações de load balancing e solar
|
|
void register_loadbalancing_settings_handlers(httpd_handle_t server, void *ctx);
|
|
|
|
#endif // LOADBALANCING_SETTINGS_API_H
|