blob: 2af4b8cff0556e5d7503ef9cf0359246cc6ab197 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef TOLLGATE_API_H
#define TOLLGATE_API_H
#include "esp_err.h"
#include "esp_http_server.h"
esp_err_t tollgate_api_start(void);
void tollgate_api_stop(void);
void tls_worker_set_queue(QueueHandle_t q);
#endif
|