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

            

                   
              


                  
                          




                                                             
#pragma once

#include "common.h"

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