memgraph/speedy/response.hpp
2015-10-09 01:24:12 +02:00

21 lines
345 B
C++

#ifndef MEMGRAPH_SPEEDY_RESPONSE_HPP
#define MEMGRAPH_SPEEDY_RESPONSE_HPP
#include "request.hpp"
#include "http/response.hpp"
namespace sp
{
class Response : public http::Response<Request, Response>
{
public:
using http::Response<Request, Response>::Response;
};
using request_cb_t = std::function<void(Request&, Response&)>;
}
#endif