mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-05-10 16:18:47 +02:00
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Route.hpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/03/19 14:59:41 by adjoly #+# #+# */
|
|
/* Updated: 2025/03/19 15:52:16 by adjoly ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace webserv {
|
|
namespace config {
|
|
|
|
struct cgi {
|
|
std::string path;
|
|
std::string ext;
|
|
};
|
|
|
|
class Route {
|
|
public:
|
|
protected:
|
|
private:
|
|
};
|
|
|
|
} // namespace config
|
|
} // namespace webserv
|