mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
10 lines
211 B
C
10 lines
211 B
C
#ifndef __HTTPD_TESTS_H__
|
|
#define __HTTPD_TESTS_H__
|
|
|
|
#include <esp_http_server.h>
|
|
|
|
extern httpd_handle_t start_tests(void);
|
|
extern void stop_tests(httpd_handle_t hd);
|
|
|
|
#endif // __HTTPD_TESTS_H__
|