🏗️」 wip: Added logger class

This commit is contained in:
2025-03-20 14:42:35 +01:00
parent 30951f436c
commit 4153e6dcdb
3 changed files with 221 additions and 14 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/19 14:11:28 by adjoly #+# #+# */
/* Updated: 2025/03/19 16:54:35 by adjoly ### ########.fr */
/* Updated: 2025/03/19 23:09:56 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,8 +21,10 @@ class Server {
public:
protected:
private:
Route *_default;
std::vector<Route *> *_routes;
Route *_default;
std::vector<Route *> *_routes;
std::string host;
std::vector<std::string> server_names;
};
} // namespace config