summaryrefslogtreecommitdiff
path: root/http/common.hpp
blob: 8fc9bcf75941f0c0ccac1f3572724d4a4e46fc34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#pragma once

#include "utility.hpp"

#include <boost/beast/http/verb.hpp>

#include <iostream>
#include <stdexcept>
#include <string>
#include <vector>

namespace crow
{

enum class ParamType
{
    STRING,
    PATH,

    MAX
};

} // namespace crow