зеркало из https://github.com/microsoft/CCF.git
13 строки
222 B
C++
13 строки
222 B
C++
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// Licensed under the Apache 2.0 License.
|
||
|
#pragma once
|
||
|
|
||
|
#include "ccf/http_status.h"
|
||
|
|
||
|
namespace ccf
|
||
|
{
|
||
|
struct RedirectDetails
|
||
|
{
|
||
|
http_status status;
|
||
|
};
|
||
|
}
|