#pragma once namespace flask { struct request { std::string url; std::unordered_map headers; std::string body; }; }