aboutsummaryrefslogtreecommitdiffstats
path: root/http_request.h
blob: e5a8da0a6c0950ac3aeeef27832e9dc06af3cb03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

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