/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* Mime.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: mmoussou #include namespace webserv { namespace http { class Mime { public: static std::string getType(const std::string &filename); private: static std::map initMimeTypes(); static std::map mimeTypes; }; } // -namespace http } // -namespace webserv