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/response_handler.hpp
2024-10-24 10:34:10 +02:00

14 lines
No EOL
214 B
C++

#ifndef RESPONSE_HANDLER_HPP
#define RESPONSE_HANDLER_HPP
#include "request_parser.hpp"
#include <string>
using namespace std;
class response_handler {
public:
string& handle(HttpRequest request);
};
#endif