userver: userver/server/http/http_status.hpp Source File
Loading...
Searching...
No Matches
http_status.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/server/http/http_status.hpp
4/// @brief @copybrief server::http::HttpStatus
5
6#include <userver/http/status_code.hpp>
7
8USERVER_NAMESPACE_BEGIN
9
10namespace server::http {
11
12/// @brief HTTP status codes
13using HttpStatus = USERVER_NAMESPACE::http::StatusCode;
14
15[[deprecated("use StatusCodeString")]] std::string_view HttpStatusString(HttpStatus status);
16
17} // namespace server::http
18
19USERVER_NAMESPACE_END