#ifndef MEMGRAPH_SPEEDY_RESPONSE_HPP #define MEMGRAPH_SPEEDY_RESPONSE_HPP #include "request.hpp" #include "http/response.hpp" namespace sp { class Response : public http::Response { public: using http::Response::Response; }; using request_cb_t = std::function; } #endif