#ifndef UVMACHINE_HTTP_REQUEST_HPP #define UVMACHINE_HTTP_REQUEST_HPP #include #include #include "version.hpp" #include "method.hpp" namespace http { struct Request { Version version; Method method; std::string url; std::map headers; std::string body; }; } #endif