/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Config.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/14 12:20:06 by adjoly #+# #+# */ /* Updated: 2025/04/22 11:52:33 by mmoussou ### ########.fr */ /* */ /* ************************************************************************** */ #pragma once #include namespace webserv { namespace config { class Config { public: Config(std::string &); ~Config(); Logger *getLogger(void) { return _log; } std::vector getServers(void) { return _servers; } Server *getServer(const std::string &); private: std::vector _servers; }; }; // namespace config }; // namespace webserv