blob: 8fc9bcf75941f0c0ccac1f3572724d4a4e46fc34 [file] [log] [blame]
Ed Tanous7045c8d2017-04-03 10:04:37 -07001#pragma once
2
Ed Tanous04e438c2020-10-03 08:06:26 -07003#include "utility.hpp"
Gunnar Mills1214b7e2020-06-04 10:11:30 -05004
Ed Tanous1abe55e2018-09-05 08:30:59 -07005#include <boost/beast/http/verb.hpp>
Gunnar Mills1214b7e2020-06-04 10:11:30 -05006
Ed Tanous7045c8d2017-04-03 10:04:37 -07007#include <iostream>
8#include <stdexcept>
9#include <string>
10#include <vector>
Ed Tanous7045c8d2017-04-03 10:04:37 -070011
Ed Tanous1abe55e2018-09-05 08:30:59 -070012namespace crow
13{
Ed Tanous7045c8d2017-04-03 10:04:37 -070014
Ed Tanous1abe55e2018-09-05 08:30:59 -070015enum class ParamType
16{
Ed Tanous1abe55e2018-09-05 08:30:59 -070017 STRING,
18 PATH,
Ed Tanous7045c8d2017-04-03 10:04:37 -070019
Ed Tanous1abe55e2018-09-05 08:30:59 -070020 MAX
Ed Tanous7045c8d2017-04-03 10:04:37 -070021};
22
Ed Tanous1abe55e2018-09-05 08:30:59 -070023} // namespace crow