aboutsummaryrefslogblamecommitdiffstats
path: root/http_request.h
blob: c08d51f9efa77e33ad68295f1d97e3278dee9fa7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

            

                   








                                                             
#pragma once

#include "common.h"

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