#pragma once #include "webserv.hpp" class Env { std::vector _servers; public: Env(JSONNode *conf); void listen(); void answer(); };