/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Route.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/03/19 14:59:41 by adjoly #+# #+# */ /* Updated: 2025/03/19 15:52:16 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include namespace webserv { namespace config { struct cgi { std::string path; std::string ext; }; class Route { public: protected: private: }; } // namespace config } // namespace webserv