mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-07 03:56:57 +03:00
8 lines
249 B
C++
8 lines
249 B
C++
#include <esp_http_server.h>
|
|
#include <string>
|
|
|
|
void register_server_file_uri(httpd_handle_t server, const char *base_path);
|
|
|
|
void unzip(std::string _in_zip_file, std::string _target_directory);
|
|
|
|
void delete_all_in_directory(std::string _directory); |