mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-23 02:52:42 +02:00
15 lines
200 B
C++
15 lines
200 B
C++
#ifndef RESTAPI_H
|
|
#define RESTAPI_H
|
|
|
|
|
|
#include <chrono>
|
|
#include "date.h"
|
|
#include "ProcessManager.hpp"
|
|
|
|
namespace RestApi
|
|
{
|
|
void start_rest_api(ProcessManager& manager, uint16_t port);
|
|
}
|
|
|
|
#endif
|