aboutsummaryrefslogblamecommitdiffstats
path: root/http_request.h
blob: 9190dac9d711ef85b5c46ac8bda96eb973fd6d88 (plain) (tree)
1
2
3
4
5
6
7
8
9

            

                   



                  
                          




                                                             
#pragma once

#include "common.h"

namespace flask
{
    struct request
    {
        HTTPMethod method;
        std::string url;
        std::unordered_map<std::string, std::string> headers;
        std::string body;
    };
}