#ifndef SERVER_MAIN_H #define SERVER_MAIN_H #include #include #include #include #include #include #include "nvs_flash.h" #include "tcpip_adapter.h" #include "esp_eth.h" #include static const char *TAG = "server-main"; extern httpd_handle_t server; httpd_handle_t start_webserver(void); void register_server_main_uri(httpd_handle_t server, const char *base_path); #endif