#pragma once #include "common.h" namespace flask { struct request { std::string url; std::unordered_map headers; std::string body; }; }