This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
short-link-backend/includes/request_handler.hpp
2024-10-25 10:35:05 +02:00

17 lines
No EOL
351 B
C++

#ifndef REQUEST_HANDLER_HPP
#define REQUEST_HANDLER_HPP
#include <boost/beast/http.hpp>
#include <boost/beast/http/message.hpp>
#include <boost/beast/http/string_body.hpp>
using namespace boost::beast;
class RequestHandler {
public:
http::response<http::string_body> handle(const http::request<http::string_body>& request);
private:
};
#endif