Hydra 0.0.1
A convenience networking library for modern C++
 
Loading...
Searching...
No Matches
http_method.h
1#ifndef SOURCEMETA_HYDRA_HTTP_METHOD_H
2#define SOURCEMETA_HYDRA_HTTP_METHOD_H
3
4namespace sourcemeta::hydra::http {
5
8enum class Method {
9 GET,
10 HEAD,
11 POST,
12 PUT,
13 DELETE,
14 CONNECT,
15 OPTIONS,
16 TRACE,
17 PATCH
18};
19
20} // namespace sourcemeta::hydra::http
21
22#endif
Method
Definition http_method.h:8