esp32-sip-client-with-headset/main/web/web_api.h

17 lines
223 B
C

#pragma once
#include "esp_http_server.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* Registriert alle API-Handler beim Webserver
*/
void web_api_register_handlers(httpd_handle_t server);
#ifdef __cplusplus
}
#endif