blob: 4b0774e92f522a25a7f767707025c4c9ebf31e5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <library/cpp/http/simple/http_client.h>
namespace NTvmAuth::NUtils {
struct TFetchResult {
TKeepAliveHttpClient::THttpCode Code;
THttpHeaders Headers;
TStringBuf Path;
TString Response;
TString RetrySettings;
};
}
|