blob: d21f41047760eb2eacd482251d12ef313af5de26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include <yt/cpp/mapreduce/http/context.h>
#include <yt/yt/client/api/public.h>
namespace NYT::NDetail {
////////////////////////////////////////////////////////////////////////////////
struct TApiClients
{
NApi::IClientPtr Light;
NApi::IClientPtr Heavy;
};
TApiClients CreateApiClients(const TClientContext& context);
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NDetail
|