2025-01-20 16:52:02 +01:00
|
|
|
/* ************************************************************************** */
|
|
|
|
/* */
|
|
|
|
/* ::: :::::::: */
|
2025-02-03 18:39:23 +01:00
|
|
|
/* default.hpp :+: :+: :+: */
|
2025-01-20 16:52:02 +01:00
|
|
|
/* +:+ +:+ +:+ */
|
2025-02-03 18:39:23 +01:00
|
|
|
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
2025-01-20 16:52:02 +01:00
|
|
|
/* +#+#+#+#+#+ +#+ */
|
2025-02-03 18:39:23 +01:00
|
|
|
/* Created: 2025/02/03 15:48:22 by mmoussou #+# #+# */
|
|
|
|
/* Updated: 2025/02/03 18:12:58 by mmoussou ### ########.fr */
|
2025-01-20 16:52:02 +01:00
|
|
|
/* */
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
2025-02-03 18:39:23 +01:00
|
|
|
#pragma once
|
|
|
|
#ifndef __REQUESTS_DEFAULT_HPP__
|
|
|
|
# define __REQUESTS_DEFAULT_HPP__
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
2025-01-20 16:52:02 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
2025-02-03 18:39:23 +01:00
|
|
|
#include "requests/HttpRequest.hpp"
|
|
|
|
#include "requests/HttpResponse.hpp"
|
|
|
|
|
|
|
|
#endif
|