#pragma once #include "webserv.hpp" class Server { string _name; std::vector _sockets; std::map _routes; public: Server(JSONNode *server); void check(); };