mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-26 12:40:45 +02:00
14 lines
204 B
C++
14 lines
204 B
C++
#ifndef RESTAPI_H
|
|
#define RESTAPI_H
|
|
|
|
#include "WriterManager.hpp"
|
|
#include <chrono>
|
|
#include "date.h"
|
|
|
|
namespace RestApi
|
|
{
|
|
void start_rest_api(WriterManager& writer_manager, uint16_t port);
|
|
}
|
|
|
|
#endif
|