mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-03-15 15:36:49 +01:00
23 lines
1.1 KiB
C++
23 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* default.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mmoussou <mmoussou@student.42angouleme.fr +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/02/03 15:48:22 by mmoussou #+# #+# */
|
|
/* Updated: 2025/02/12 00:11:33 by mmoussou ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
#ifndef __WEBSERV_REQUESTS_DEFAULT_HPP__
|
|
# define __WEBSERV_REQUESTS_DEFAULT_HPP__
|
|
|
|
#include <requests/HttpRequest.hpp>
|
|
#include <requests/HttpResponse.hpp>
|
|
|
|
using namespace webserv;
|
|
|
|
#endif // __WEBSERV_REQUESTS_DEFAULT_HPP__
|